From 833d20a69fe17ab846c153e35230c66a41d8fca9 Mon Sep 17 00:00:00 2001 From: Pixel <> Date: Wed, 28 Feb 2001 11:40:25 +0000 Subject: Premier jet --- include/SList.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/SList.h (limited to 'include/SList.h') 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 +#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 -- cgit v1.2.3