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

模拟服务器

开发平台:

C/C++

  1. //---------------------------------------------------------------------------
  2. // Sword3 Engine (c) 1999-2000 by Kingsoft
  3. //
  4. // File: KStrList.h
  5. // Date: 2000.08.08
  6. // Code: WangWei(Daphnis)
  7. // Desc: Header File
  8. //---------------------------------------------------------------------------
  9. #ifndef KStrList_H
  10. #define KStrList_H
  11. //---------------------------------------------------------------------------
  12. #include "KList.h"
  13. #include "KStrNode.h"
  14. //---------------------------------------------------------------------------
  15. class ENGINE_API KStrList : public KList
  16. {
  17. public:
  18. KStrNode* Find(char* str);
  19. };
  20. //---------------------------------------------------------------------------
  21. #endif