Virtual method implementations moved to .cpp files

get_method_id() now const
This commit is contained in:
2016-06-15 11:26:51 +02:00
parent 9cf80108b5
commit df2fee4cef
13 changed files with 67 additions and 14 deletions

View File

@@ -118,7 +118,7 @@ namespace eap {
///
/// \returns Pointer to cloned configuration
///
virtual config* clone() const { return new config_ttls(*this); }
virtual config* clone() const;
/// \name XML configuration management
/// @{
@@ -155,7 +155,7 @@ namespace eap {
///
/// \returns `eap::type_ttls`
///
virtual eap::type_t get_method_id() { return eap::type_ttls; }
virtual eap::type_t get_method_id() const;
public:
config_method *m_inner; ///< Inner authentication configuration