19 lines
265 B
C++
19 lines
265 B
C++
#ifndef __ConsoleService_h__
|
|
#define __ConsoleService_h__
|
|
|
|
#include "Service.h"
|
|
#include "ConsoleSession.h"
|
|
|
|
namespace core {
|
|
|
|
class ConsoleService : public Service {
|
|
|
|
public:
|
|
Session * getSocketAccept(EPoll &ePoll) override;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|