Virtual method implementations moved to .cpp files
get_method_id() now const
This commit is contained in:
@@ -60,3 +60,13 @@ eap::config_pap& eap::config_pap::operator=(_Inout_ config_pap &&other)
|
||||
}
|
||||
|
||||
|
||||
eap::config* eap::config_pap::clone() const
|
||||
{
|
||||
return new config_pap(*this);
|
||||
}
|
||||
|
||||
|
||||
eap::type_t eap::config_pap::get_method_id() const
|
||||
{
|
||||
return eap::type_pap;
|
||||
}
|
||||
|
@@ -58,3 +58,15 @@ eap::credentials_pap& eap::credentials_pap::operator=(_Inout_ credentials_pap &&
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
eap::config* eap::credentials_pap::clone() const
|
||||
{
|
||||
return new credentials_pap(*this);
|
||||
}
|
||||
|
||||
|
||||
LPCTSTR eap::credentials_pap::target_suffix() const
|
||||
{
|
||||
return _T("PAP");
|
||||
}
|
||||
|
Reference in New Issue
Block a user