#ifndef __SLIST_H__ #define __SLIST_H__ #include #include #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