summaryrefslogtreecommitdiff
path: root/include/SList.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/SList.h')
-rw-r--r--include/SList.h16
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