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

@@ -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;
}