diff options
author | Mateusz Piekos <mateuszpiekos@gmail.com> | 2012-06-05 13:43:34 (GMT) |
---|---|---|
committer | Mateusz Piekos <mateuszpiekos@gmail.com> | 2012-06-05 13:43:34 (GMT) |
commit | dfeab948530982d10a7754a93a37cd8422888378 (patch) | |
tree | 68f437c9b100794fefb75f8cf143722e11f973cd /Swift/Controllers/WhiteboardController.h | |
parent | 7520c7fed383d4f7631f5572ef40379022126264 (diff) | |
download | swift-contrib-dfeab948530982d10a7754a93a37cd8422888378.zip swift-contrib-dfeab948530982d10a7754a93a37cd8422888378.tar.bz2 |
Restored ChatController and ChatsManager
Diffstat (limited to 'Swift/Controllers/WhiteboardController.h')
-rw-r--r-- | Swift/Controllers/WhiteboardController.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Swift/Controllers/WhiteboardController.h b/Swift/Controllers/WhiteboardController.h deleted file mode 100644 index aa1ace3..0000000 --- a/Swift/Controllers/WhiteboardController.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) 2012 Mateusz Piękos - * Licensed under the simplified BSD license. - * See Documentation/Licenses/BSD-simplified.txt for more information. - */ - -#pragma once - -#include <boost/shared_ptr.hpp> - -#include <Swiften/Client/StanzaChannel.h> -#include "Swiften/JID/JID.h" -#include "Swift/Controllers/XMPPEvents/MessageEvent.h" - -namespace Swift { - class WhiteboardWindow; - class WhiteboardWindowFactory; - - class WhiteboardController { - public: - WhiteboardController(StanzaChannel* stanzaChannel, const JID& toJID, WhiteboardWindowFactory* whiteboardWindowFactory); - ~WhiteboardController(); - void handleIncomingMessage(boost::shared_ptr<MessageEvent> message); - private: - void handleItemChange(std::string item); - WhiteboardWindow* whiteboardWindow_; - StanzaChannel* stanzaChannel_; - JID toJID_; - }; -} - |