diff --git a/include/VA.h b/include/VA.h index 863c5fdce18950ec68bd337b15d3799650798234..65553c282b23a336bbb6e2240e96ed17ea6a81db 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 fb4c859b9d468e1d4365f03be84266470941de22..4870e8c9ca5b49318b93bb269b9d2a2ccc5b4516 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 3a2108e7ba45247e3ad3360ec2bf077e08dec6fc..77186f91e129c29ddd6a2ef6a645a394d491eb49 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 */