Added missing virtual decls
This commit is contained in:
@@ -39,6 +39,7 @@ namespace Auth {
|
|||||||
class IAuthTokenService
|
class IAuthTokenService
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~IAuthTokenService() = default;
|
||||||
|
|
||||||
// Auth Token services
|
// Auth Token services
|
||||||
struct AuthTokenProcessResult
|
struct AuthTokenProcessResult
|
||||||
|
|||||||
@@ -75,6 +75,8 @@ namespace MetaData
|
|||||||
class IParser
|
class IParser
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~IParser() = default;
|
||||||
|
|
||||||
virtual std::optional<Track> parse(const std::filesystem::path& p, bool debug = false) = 0;
|
virtual std::optional<Track> parse(const std::filesystem::path& p, bool debug = false) = 0;
|
||||||
|
|
||||||
void setClusterTypeNames(const std::set<std::string>& clusterTypeNames) { _clusterTypeNames = clusterTypeNames; }
|
void setClusterTypeNames(const std::set<std::string>& clusterTypeNames) { _clusterTypeNames = clusterTypeNames; }
|
||||||
|
|||||||
@@ -77,6 +77,7 @@ class Log
|
|||||||
class Logger
|
class Logger
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
virtual ~Logger() = default;
|
||||||
virtual void processLog(const Log& log) = 0;
|
virtual void processLog(const Log& log) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user