Doxygen update

This commit is contained in:
Simon Rozman 2016-10-28 13:44:36 +02:00
parent 6f30239ada
commit f5a40f7ca8
4 changed files with 22 additions and 22 deletions

View File

@ -44,25 +44,25 @@ namespace eap
public: public:
/// ///
/// Constructs an EAP method /// Constructs a MSCHAPv2 method
/// ///
/// \param[in] mod EAP module to use for global services /// \param[in] mod MSCHAPv2 module to use for global services
/// \param[in] cfg Method configuration /// \param[in] cfg Method configuration
/// \param[in] cred User credentials /// \param[in] cred User credentials
/// ///
method_mschapv2(_In_ module &module, _In_ config_method_mschapv2 &cfg, _In_ credentials_pass &cred); method_mschapv2(_In_ module &module, _In_ config_method_mschapv2 &cfg, _In_ credentials_pass &cred);
/// ///
/// Moves an EAP method /// Moves a MSCHAPv2 method
/// ///
/// \param[in] other EAP method to move from /// \param[in] other MSCHAPv2 method to move from
/// ///
method_mschapv2(_Inout_ method_mschapv2 &&other); method_mschapv2(_Inout_ method_mschapv2 &&other);
/// ///
/// Moves an EAP method /// Moves a MSCHAPv2 method
/// ///
/// \param[in] other EAP method to move from /// \param[in] other MSCHAPv2 method to move from
/// ///
/// \returns Reference to this object /// \returns Reference to this object
/// ///

View File

@ -42,25 +42,25 @@ namespace eap
public: public:
/// ///
/// Constructs an EAP method /// Constructs a PAP method
/// ///
/// \param[in] mod EAP module to use for global services /// \param[in] mod PAP module to use for global services
/// \param[in] cfg Method configuration /// \param[in] cfg Method configuration
/// \param[in] cred User credentials /// \param[in] cred User credentials
/// ///
method_pap(_In_ module &module, _In_ config_method_pap &cfg, _In_ credentials_pass &cred); method_pap(_In_ module &module, _In_ config_method_pap &cfg, _In_ credentials_pass &cred);
/// ///
/// Moves an EAP method /// Moves a PAP method
/// ///
/// \param[in] other EAP method to move from /// \param[in] other PAP method to move from
/// ///
method_pap(_Inout_ method_pap &&other); method_pap(_Inout_ method_pap &&other);
/// ///
/// Moves an EAP method /// Moves a PAP method
/// ///
/// \param[in] other EAP method to move from /// \param[in] other PAP method to move from
/// ///
/// \returns Reference to this object /// \returns Reference to this object
/// ///

View File

@ -64,7 +64,7 @@ namespace eap
public: public:
/// ///
/// Constructs an EAP method /// Constructs an EAP-TLS method
/// ///
/// \param[in] mod EAP module to use for global services /// \param[in] mod EAP module to use for global services
/// \param[in] cfg Method configuration /// \param[in] cfg Method configuration
@ -73,16 +73,16 @@ namespace eap
method_tls(_In_ module &module, _In_ config_method_tls &cfg, _In_ credentials_tls &cred); method_tls(_In_ module &module, _In_ config_method_tls &cfg, _In_ credentials_tls &cred);
/// ///
/// Moves an EAP method /// Moves an EAP-TLS method
/// ///
/// \param[in] other EAP method to move from /// \param[in] other EAP-TLS method to move from
/// ///
method_tls(_Inout_ method_tls &&other); method_tls(_Inout_ method_tls &&other);
/// ///
/// Moves an EAP method /// Moves an EAP-TLS method
/// ///
/// \param[in] other EAP method to move from /// \param[in] other EAP-TLS method to move from
/// ///
/// \returns Reference to this object /// \returns Reference to this object
/// ///

View File

@ -44,7 +44,7 @@ namespace eap
public: public:
/// ///
/// Constructs an EAP method /// Constructs an EAP-TTLS method
/// ///
/// \param[in] mod EAP module to use for global services /// \param[in] mod EAP module to use for global services
/// \param[in] cfg Method configuration /// \param[in] cfg Method configuration
@ -53,16 +53,16 @@ namespace eap
method_ttls(_In_ module &module, _In_ config_method_ttls &cfg, _In_ credentials_ttls &cred); method_ttls(_In_ module &module, _In_ config_method_ttls &cfg, _In_ credentials_ttls &cred);
/// ///
/// Moves an EAP method /// Moves an EAP-TTLS method
/// ///
/// \param[in] other EAP method to move from /// \param[in] other EAP-TTLS method to move from
/// ///
method_ttls(_Inout_ method_ttls &&other); method_ttls(_Inout_ method_ttls &&other);
/// ///
/// Moves an EAP method /// Moves an EAP-TTLS method
/// ///
/// \param[in] other EAP method to move from /// \param[in] other EAP-TTLS method to move from
/// ///
/// \returns Reference to this object /// \returns Reference to this object
/// ///