From 054172f0385bb7006eba96f605c8d23e52499330 Mon Sep 17 00:00:00 2001 From: "Dipl.-Ing. Jonas Stienen" Date: Thu, 19 Oct 2017 13:16:01 +0200 Subject: [PATCH] More comments in EN --- include/VA.h | 3 ++- include/VAInterface.h | 14 ++++++++++---- include/VAVersion.h | 2 +- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/include/VA.h b/include/VA.h index 863c5fd..65553c2 100644 --- a/include/VA.h +++ b/include/VA.h @@ -40,8 +40,9 @@ You should also have received acopy of the License with the VA software package. @section getting_started Getting started -If you are a C++ developer and want to integrate VA into your application, the first contact point should be the VABase interface representad by the #IVAInterface class. +If you are a C++ developer and want to integrate VA into your application, the first contact point should be the VABase interface represented by the #IVAInterface class. If you are planning to create a binding for any other programming and/or scripting language, also have a look at VANet and the #IVANetClient class. +If you want to provide a VA application including a network service, see #IVANetServer and #IVACore */ diff --git a/include/VAInterface.h b/include/VAInterface.h index fb4c859..4870e8c 100644 --- a/include/VAInterface.h +++ b/include/VAInterface.h @@ -1068,13 +1068,19 @@ public: { SetSoundSourceSignalSource( iID, "" ); }; - - //! Auralisierungsmodus einer Schallquelle zurückgeben (Bitvektor) + + //! Sound source auralization mode getter + /** + * Set an individual auralization mode for a given sound source. + * + * @param[in] iID Sound source identifier + * @return Auralizaion mode bit-vector + */ virtual int GetSoundSourceAuralizationMode( const int iID ) const = 0; - //! Auralisierungsmodus einer Schallquelle setzen (Bitvektor) + //! Sound source auralization mode setter /** - * Mit dieser Methode wird der Auralisierungsmodus für eine Schallquelle festgelegt. + * Set an individual auralization mode for a given sound source. * * @param[in] iID Sound source identifier * @param[in] iAuralizationMode Auralizaion mode bit-vector diff --git a/include/VAVersion.h b/include/VAVersion.h index 3a2108e..77186f9 100644 --- a/include/VAVersion.h +++ b/include/VAVersion.h @@ -29,7 +29,7 @@ public: std::string sFlags; //!< List of properties (flags) (e.g. "debug", "SSE2") std::string sComments; //!< Additional comments - //! Als Zeichenkette zurückgeben + //! Return VA version as formatted string /** * @return Version info as formatted string */ -- GitLab