diff options
author | Pixel <> | 2001-02-28 11:40:25 +0000 |
---|---|---|
committer | Pixel <> | 2001-02-28 11:40:25 +0000 |
commit | 833d20a69fe17ab846c153e35230c66a41d8fca9 (patch) | |
tree | 180ba073e59fee8df22cb733be2eec4c452e1b85 /include/SList.h |
Premier jetstart
Diffstat (limited to 'include/SList.h')
-rw-r--r-- | include/SList.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/SList.h b/include/SList.h new file mode 100644 index 0000000..845d83a --- /dev/null +++ b/include/SList.h @@ -0,0 +1,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 |