blob: 47efe14bd52128d2279fce06bb94225cedcc2dd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "Swift/Controllers/UIInterfaces/ChatListWindowFactory.h"
namespace Swift {
class QtMainWindowFactory;
class QtChatListWindowFactory : public ChatListWindowFactory{
public:
QtChatListWindowFactory(QtMainWindowFactory* mainWindowFactory);
ChatListWindow* createWindow(UIEventStream* uiEventStream);
private:
QtMainWindowFactory* mainWindowFactory_;
};
}
|