1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef __SLIST_H__ #define __SLIST_H__ #include <PTypes.h> #include <CList.h> #ifdef __cplusplus class SList:public CList { public: virtual Cell Insert(Key_t IKey, Datas_t const &IDatas); }; #else #error This librairy will only compile with a C++ compiler. #endif #endif