diff options
Diffstat (limited to 'ArtistVisibilityCommand.h')
-rw-r--r-- | ArtistVisibilityCommand.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ArtistVisibilityCommand.h b/ArtistVisibilityCommand.h new file mode 100644 index 0000000..416c801 --- /dev/null +++ b/ArtistVisibilityCommand.h @@ -0,0 +1,12 @@ +#pragma once + +#include "Command.h" + +class ArtistVisibilityCommand : public Command { + using Command::Command; + +public: + virtual void toggle(); + virtual void set(bool visible); +}; + |