#pragma once class UserSession; class PatchInfo { public: PatchInfo(void); ~PatchInfo(void); private: DWORD m_dwPatchKey; UserSession* m_pSession; int m_nServerCount; //ÆÐÄ¡ÇØ¾ß ÇÏ´Â ¼­¹öÀÇ °³¼ö. public: VOID SetKey( DWORD dwKey ){ m_dwPatchKey = dwKey;} VOID SetSession( UserSession* pSession ){ m_pSession = pSession; } VOID SetServerCount( DWORD dwCount ){ m_nServerCount = dwCount;} DWORD GetKey( ){ return m_dwPatchKey;} UserSession* GetSession( ){ return m_pSession; } int GetServerCount(){ return m_nServerCount; } };