#ifndef __ACSESSION_HPP #define __ACSESSION_HPP #include "session/SessionManager.hpp" #include "session/SessionPool.hpp" #include "session/SessionManagerImpl.hpp" #include #include class ACSession : public SessionManagerImpl { public: ACSession(SessionManagerProperties* props) ; ~ACSession(); void shutdown(); void run(); }; #endif // __ACSESSION_HPP