21 lines
322 B
C++
21 lines
322 B
C++
#include "StdAfx.h"
|
|
#include "SessionMgr.h"
|
|
#include "ShopSession.h"
|
|
|
|
CSessionMgr::CSessionMgr(void)
|
|
{
|
|
}
|
|
|
|
CSessionMgr::~CSessionMgr(void)
|
|
{
|
|
}
|
|
WBANetwork::ServerSession* CSessionMgr::CreateSession()
|
|
{
|
|
return new CShopSession();
|
|
}
|
|
|
|
void CSessionMgr::DeleteSession( WBANetwork::ServerSession* session )
|
|
{
|
|
delete session;
|
|
}
|