summaryrefslogtreecommitdiffstats
blob: 6e41a869afec4c931ce653171be950bd4f4cf77a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "Swift/Controllers/UIInterfaces/EventWindowFactory.h"

namespace Swift {
	class QtMainWindowFactory;
	class QtEventWindowFactory : public EventWindowFactory {
		public:
			QtEventWindowFactory(QtMainWindowFactory* mainWindowFactory);
			virtual EventWindow* createEventWindow();
		private:
			QtMainWindowFactory* mainWindowFactory_;
	};
}