diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-01-17 00:17:11 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-01-17 00:20:41 (GMT) |
commit | ed8990c5ee4f54d63e88b6bad28356d0c032a8c3 (patch) | |
tree | ac0ca6f18e4b01c76471d0f4660f8e111bc4fdac /Swift/Controllers/ChatWindowFactory.h | |
parent | 9ece5e827fa308b36f18884487d34e0073870496 (diff) | |
download | swift-ed8990c5ee4f54d63e88b6bad28356d0c032a8c3.zip swift-ed8990c5ee4f54d63e88b6bad28356d0c032a8c3.tar.bz2 |
Preparation. for /me.
QtUI's implementation isn't done yet.
Diffstat (limited to 'Swift/Controllers/ChatWindowFactory.h')
-rw-r--r-- | Swift/Controllers/ChatWindowFactory.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/Swift/Controllers/ChatWindowFactory.h b/Swift/Controllers/ChatWindowFactory.h deleted file mode 100644 index c55ddba..0000000 --- a/Swift/Controllers/ChatWindowFactory.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef SWIFTEN_CHATWINDOWFACTORY_H -#define SWIFTEN_CHATWINDOWFACTORY_H - -#include "Swiften/JID/JID.h" - -namespace Swift { - class ChatWindow; - - class ChatWindowFactory { - public: - virtual ~ChatWindowFactory() {}; - /** - * Transfers ownership of result. - */ - virtual ChatWindow* createChatWindow(const JID &contact) = 0; - - }; -} -#endif - |