28 lines
427 B
C++
28 lines
427 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>
|
||
|
|
||
|
|
||
|
class ACSession : public SessionManagerImpl
|
||
|
{
|
||
|
public:
|
||
|
ACSession(SessionManagerProperties* props) ;
|
||
|
|
||
|
~ACSession();
|
||
|
|
||
|
|
||
|
void shutdown();
|
||
|
void run();
|
||
|
|
||
|
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // __ACSESSION_HPP
|