blob: bda4c01c3736739dd2d5c7db024f6b248f7f4f76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
#ifndef SWIFT_QtChatWindowFactory_H
#define SWIFT_QtChatWindowFactory_H
#include "Swift/Controllers/ChatWindowFactory.h"
#include "Swiften/JID/JID.h"
namespace Swift {
	class QtTreeWidgetFactory;
	class QtChatWindowFactory : public ChatWindowFactory {
		public:
			QtChatWindowFactory(QtTreeWidgetFactory *treeWidgetFactory);
			ChatWindow* createChatWindow(const JID &contact);
		private:
			QtTreeWidgetFactory *treeWidgetFactory_;
	};
}
#endif
  |