00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef _LST_H
00016 #define _LST_H
00017
00018
00019
00020
00021 class cList
00022 {
00023 private:
00024 cList *next;
00025 cList *prev;
00026
00027 protected:
00028 void *_pcObj;
00029
00030 public:
00031 cList ( cList *&, void * );
00032 virtual ~cList ( void );
00033 static void Free ( cList *& );
00034 static void Remove ( cList *&, void * );
00035 static int Exist ( cList *, void * );
00036 cList *Next ( void ) { return next; }
00037 void *ObjData( void ) { return _pcObj; }
00038
00039 };
00040
00041 #endif