blob: 47e21584bf269c2cfdc549ebbc970b63ccb4ea05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "Command.h"
class ToggleArtistVisibilityCommand : public Command {
using Command::Command;
public:
virtual void toggle();
virtual void set(bool visible);
};
|