16 lines
270 B
C++
16 lines
270 B
C++
#pragma once
|
|
|
|
#include "ServerSession.h"
|
|
|
|
class TempServerSession : public ServerSession
|
|
{
|
|
public:
|
|
TempServerSession(void);
|
|
~TempServerSession(void);
|
|
|
|
eUPDATE_SERVER_TYPE GetServerType(){ return UPDATE_TEMP; }
|
|
|
|
private:
|
|
VOID OnRecv( BYTE * pMsg, WORD wSize );
|
|
};
|