diff options
Diffstat (limited to 'OpenFileGUICommand.h')
-rw-r--r-- | OpenFileGUICommand.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenFileGUICommand.h b/OpenFileGUICommand.h index 9b504a9..1990ce7 100644 --- a/OpenFileGUICommand.h +++ b/OpenFileGUICommand.h @@ -2,10 +2,18 @@ #include "Command.h" +class Museum; +class View; + class OpenFileGUICommand : public Command { - using Command::Command; +public: + OpenFileGUICommand(Museum & m, View & v); public: virtual void execute(); + +private: + Museum & museum; + View & view; }; |