KStrList.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
- //---------------------------------------------------------------------------
- // Sword3 Engine (c) 1999-2000 by Kingsoft
- //
- // File: KStrList.h
- // Date: 2000.08.08
- // Code: WangWei(Daphnis)
- // Desc: Header File
- //---------------------------------------------------------------------------
- #ifndef KStrList_H
- #define KStrList_H
- //---------------------------------------------------------------------------
- #include "KList.h"
- #include "KStrNode.h"
- //---------------------------------------------------------------------------
- class ENGINE_API KStrList : public KList
- {
- public:
- KStrNode* Find(char* str);
- };
- //---------------------------------------------------------------------------
- #endif