Class naming update
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user