diff options
Diffstat (limited to 'Swift/Controllers/UIInterfaces/ChatListWindowFactory.h')
-rw-r--r-- | Swift/Controllers/UIInterfaces/ChatListWindowFactory.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Swift/Controllers/UIInterfaces/ChatListWindowFactory.h b/Swift/Controllers/UIInterfaces/ChatListWindowFactory.h new file mode 100644 index 0000000..05e5a55 --- /dev/null +++ b/Swift/Controllers/UIInterfaces/ChatListWindowFactory.h @@ -0,0 +1,11 @@ +#pragma once + +#include "Swift/Controllers/UIInterfaces/ChatListWindow.h" + +namespace Swift { + class UIEventStream; + class ChatListWindowFactory { + public: + virtual ChatListWindow* createWindow(UIEventStream* uiEventStream) = 0; + }; +} |