/* * Copyright (c) 2010 Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include #include #include namespace Swift { class ChatStateTracker { public: ChatStateTracker(); void handleMessageReceived(boost::shared_ptr message); void handlePresenceChange(boost::shared_ptr newPresence); boost::signal onChatStateChange; private: void changeState(ChatState::ChatStateType state); ChatState::ChatStateType currentState_; }; }