18 lines
377 B
C++
18 lines
377 B
C++
|
|
#include "NMManager.h"
|
||
|
|
#include "NMCSChatSession.h"
|
||
|
|
|
||
|
|
CNMCSChatSession::CNMCSChatSession() : CNMGSGeneralSession( kSessionType_Chat )
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
CNMCSChatSession::~CNMCSChatSession()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
BOOL CNMCSChatSession::SendChatMessage( CNMChatMessage& chatMsg )
|
||
|
|
{
|
||
|
|
CNMCSSendChatMessageFunc
|
||
|
|
func( this->GetSerialKey(), chatMsg );
|
||
|
|
return CNMManager::GetInstance().CallNMFunc( &func );
|
||
|
|
}
|