//---------------------------------------------------------------------- //---------------------------------------------------------------------- //---------------------------------------------------------------------- #include "PartyMatching.h" //---------------------------------------------------------------------- CPartyMatching::CPartyMatching() { static int index = 1; m_index = index++; Clear(); } //---------------------------------------------------------------------- CPartyMatching::~CPartyMatching() { } //---------------------------------------------------------------------- void CPartyMatching::Clear() { m_master = NULL; m_use = false; ::ZeroMemory(&m_info, sizeof(m_info)); } //----------------------------------------------------------------------