target_suffix() method is private now

This commit is contained in:
2016-07-19 13:39:41 +02:00
parent 4acabbca4e
commit 4630b32f77
4 changed files with 25 additions and 6 deletions

View File

@@ -215,11 +215,6 @@ namespace eap
///
virtual bool retrieve(_In_ LPCTSTR pszTargetName, _Out_ EAP_ERROR **ppEapError) = 0;
///
/// Return target suffix for Windows Credential Manager credential name
///
virtual LPCTSTR target_suffix() const = 0;
///
/// Returns target name for Windows Credential Manager credential name
///
@@ -239,6 +234,17 @@ namespace eap
/// @}
protected:
/// \name Storage
/// @{
///
/// Return target suffix for Windows Credential Manager credential name
///
virtual LPCTSTR target_suffix() const = 0;
/// @}
public:
std::wstring m_identity; ///< Identity (username\@domain, certificate name etc.)
};