credentials::target_suffix() is public now, as it can be reused to provide GUI method identifier

This commit is contained in:
2016-07-21 12:33:32 +02:00
parent d69e8b3f6a
commit ee8410bdb9
4 changed files with 16 additions and 28 deletions

View File

@@ -178,6 +178,11 @@ namespace eap
return target_name;
}
///
/// Return target suffix for Windows Credential Manager credential name
///
virtual LPCTSTR target_suffix() const = 0;
/// @}
///
@@ -189,17 +194,6 @@ namespace eap
/// Returns credential name (for GUI display).
///
virtual winstd::tstring get_name() const;
protected:
/// \name Storage
/// @{
///
/// Return target suffix for Windows Credential Manager credential name
///
virtual LPCTSTR target_suffix() const = 0;
/// @}
};