KStrList.h
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 1k
Development Platform:

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