Added missing virtual decls

This commit is contained in:
emeric
2020-03-01 21:18:20 +01:00
parent c69f81c12e
commit 97754e5e97
3 changed files with 4 additions and 0 deletions
@@ -39,6 +39,7 @@ namespace Auth {
class IAuthTokenService
{
public:
virtual ~IAuthTokenService() = default;
// Auth Token services
struct AuthTokenProcessResult
@@ -75,6 +75,8 @@ namespace MetaData
class IParser
{
public:
virtual ~IParser() = default;
virtual std::optional<Track> parse(const std::filesystem::path& p, bool debug = false) = 0;
void setClusterTypeNames(const std::set<std::string>& clusterTypeNames) { _clusterTypeNames = clusterTypeNames; }
+1
View File
@@ -77,6 +77,7 @@ class Log
class Logger
{
public:
virtual ~Logger() = default;
virtual void processLog(const Log& log) = 0;
};