aboutsummaryrefslogtreecommitdiff
path: root/OpenFileGUICommand.h
blob: 1990ce73921c1a71c1773d0e6cb6c7a55f925486 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include "Command.h"

class Museum;
class View;

class OpenFileGUICommand : public Command {
public:
	OpenFileGUICommand(Museum & m, View & v);

public:
	virtual void execute();

private:
	Museum & museum;
	View & view;
};