9 lines
162 B
C++
9 lines
162 B
C++
#include "ConsoleService.h"
|
|
|
|
namespace core {
|
|
|
|
Session * ConsoleService::getSocketAccept(EPoll &ePoll) {
|
|
return new ConsoleSession(ePoll, *this);
|
|
}
|
|
|
|
} |