mirror of
https://github.com/clangen/musikcube.git
synced 2025-04-16 14:42:41 +00:00
Modernize override syntax.
This commit is contained in:
parent
c536a4bc9d
commit
5e23a21aa6
@ -63,13 +63,13 @@ using namespace std::chrono;
|
|||||||
|
|
||||||
class NullIndexer: public musik::core::IIndexer {
|
class NullIndexer: public musik::core::IIndexer {
|
||||||
public:
|
public:
|
||||||
virtual ~NullIndexer() override { }
|
virtual ~NullIndexer() { }
|
||||||
virtual void AddPath(const std::string& path) override { }
|
void AddPath(const std::string& path) noexcept override { }
|
||||||
virtual void RemovePath(const std::string& path) override { }
|
void RemovePath(const std::string& path) noexcept override { }
|
||||||
virtual void GetPaths(std::vector<std::string>& paths) override { }
|
void GetPaths(std::vector<std::string>& paths) noexcept override { }
|
||||||
virtual void Schedule(SyncType type) override { }
|
void Schedule(SyncType type) noexcept override { }
|
||||||
virtual void Stop() override { }
|
void Stop() noexcept override { }
|
||||||
virtual State GetState() override { return StateIdle; }
|
State GetState() noexcept override { return StateIdle; }
|
||||||
} kNullIndexer;
|
} kNullIndexer;
|
||||||
|
|
||||||
class RemoteLibrary::QueryCompletedMessage: public Message {
|
class RemoteLibrary::QueryCompletedMessage: public Message {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user