Class naming update

This commit is contained in:
2016-07-20 10:37:12 +02:00
parent 512f46f014
commit 434e042f8b
16 changed files with 121 additions and 121 deletions

View File

@@ -22,27 +22,27 @@
//////////////////////////////////////////////////////////////////////
// eap::config_pap
// eap::config_method_pap
//////////////////////////////////////////////////////////////////////
eap::config_pap::config_pap(_In_ module &mod) : config_method<credentials_pap>(mod)
eap::config_method_pap::config_method_pap(_In_ module &mod) : config_method<credentials_pap>(mod)
{
}
eap::config_pap::config_pap(_In_ const config_pap &other) :
eap::config_method_pap::config_method_pap(_In_ const config_method_pap &other) :
config_method<credentials_pap>(other)
{
}
eap::config_pap::config_pap(_Inout_ config_pap &&other) :
eap::config_method_pap::config_method_pap(_Inout_ config_method_pap &&other) :
config_method<credentials_pap>(std::move(other))
{
}
eap::config_pap& eap::config_pap::operator=(_In_ const config_pap &other)
eap::config_method_pap& eap::config_method_pap::operator=(_In_ const config_method_pap &other)
{
if (this != &other)
(config_method<credentials_pap>&)*this = other;
@@ -51,7 +51,7 @@ eap::config_pap& eap::config_pap::operator=(_In_ const config_pap &other)
}
eap::config_pap& eap::config_pap::operator=(_Inout_ config_pap &&other)
eap::config_method_pap& eap::config_method_pap::operator=(_Inout_ config_method_pap &&other)
{
if (this != &other)
(config_method<credentials_pap>&&)*this = std::move(other);
@@ -60,13 +60,13 @@ eap::config_pap& eap::config_pap::operator=(_Inout_ config_pap &&other)
}
eap::config* eap::config_pap::clone() const
eap::config* eap::config_method_pap::clone() const
{
return new config_pap(*this);
return new config_method_pap(*this);
}
eap::type_t eap::config_pap::get_method_id() const
eap::type_t eap::config_method_pap::get_method_id() const
{
return eap::type_pap;
}