Files
Sun1602/Server/DatabaseProxy/Sessions/PortalServerSession.h
T
2022-10-26 12:25:11 +08:00

18 lines
440 B
C++

#pragma once
#if !defined(_NA002635_GP_DP_PROTOCOL_UINIFICATION)
#include "ChildServerSession.h"
class PortalServerSession :
public ChildServerSession
{
__DECL_CUSTOMPOOL_PTR( PortalServerSession )
public:
PortalServerSession(void);
~PortalServerSession(void);
eSERVER_TYPE GetServerType() { return PORTAL_SERVER; }
protected:
VOID OnRecv( BYTE * pMsg, WORD wSize );
};
#endif //if !defined(_NA002635_GP_DP_PROTOCOL_UINIFICATION)