diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-18 15:48:14 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-18 15:48:14 +0200 |
commit | d8289105193707daede1a5b59137f18e20f20aeb (patch) | |
tree | 939908b9c4c6f7aaef8aa61ee2e04be3e85610b6 /ToggleArtistVisibilityCommand.h | |
parent | 76e61d68bbf568ec0d7fc4632e52d4de5496b003 (diff) |
(2/2) rename
Diffstat (limited to 'ToggleArtistVisibilityCommand.h')
-rw-r--r-- | ToggleArtistVisibilityCommand.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ToggleArtistVisibilityCommand.h b/ToggleArtistVisibilityCommand.h new file mode 100644 index 0000000..47e2158 --- /dev/null +++ b/ToggleArtistVisibilityCommand.h @@ -0,0 +1,12 @@ +#pragma once + +#include "Command.h" + +class ToggleArtistVisibilityCommand : public Command { + using Command::Command; + +public: + virtual void toggle(); + virtual void set(bool visible); +}; + |