eap::type_t >> winstd::eap_type_t

This commit is contained in:
2016-08-04 12:08:20 +02:00
parent 22a87bf90d
commit a102b43a19
17 changed files with 49 additions and 61 deletions

View File

@@ -94,6 +94,6 @@ namespace eap
///
/// \returns `eap::type_pap`
///
virtual eap::type_t get_method_id() const;
virtual winstd::eap_type_t get_method_id() const;
};
}

View File

@@ -20,6 +20,9 @@
#include "StdAfx.h"
using namespace std;
using namespace winstd;
//////////////////////////////////////////////////////////////////////
// eap::config_method_pap
@@ -66,7 +69,7 @@ eap::config* eap::config_method_pap::clone() const
}
eap::type_t eap::config_method_pap::get_method_id() const
eap_type_t eap::config_method_pap::get_method_id() const
{
return eap::type_pap;
return eap_type_pap;
}