/* * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include #include namespace Swift { class ServerSession; class ServerStanzaRouter { public: ServerStanzaRouter(); bool routeStanza(std::shared_ptr); void addClientSession(ServerSession*); void removeClientSession(ServerSession*); private: std::vector clientSessions_; }; }