DRDE/ACTK1_0/session/ACSession.hpp

28 lines
448 B
C++

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