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

@@ -82,6 +82,12 @@ eap::config_ttls& eap::config_ttls::operator=(_Inout_ config_ttls &&other)
}
eap::config* eap::config_ttls::clone() const
{
return new config_ttls(*this);
}
DWORD eap::config_ttls::save(_In_ IXMLDOMDocument *pDoc, _In_ IXMLDOMNode *pConfigRoot, _Out_ EAP_ERROR **ppEapError) const
{
const bstr bstrNamespace(L"urn:ietf:params:xml:ns:yang:ietf-eap-metadata");
@@ -147,3 +153,9 @@ DWORD eap::config_ttls::load(_In_ IXMLDOMNode *pConfigRoot, _Out_ EAP_ERROR **pp
return config_tls::load(pConfigRoot, ppEapError);
}
eap::type_t eap::config_ttls::get_method_id() const
{
return eap::type_ttls;
}