KIndexNode.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:0k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #ifndef KIndexNodeH
  2. #define KIndexNodeH
  3. class KIndexNode : public KNode
  4. {
  5. public:
  6. int m_nIndex;
  7. int m_Ref;
  8. public:
  9. KIndexNode() { m_nIndex = NULL; m_Ref = 0; };
  10. void AddRef() { m_Ref++; };
  11. void Release() { _ASSERT(m_Ref > 0); m_Ref--; };
  12. };
  13. #endif