summaryrefslogtreecommitdiff
path: root/include/SList.h
blob: 845d83a061de3ea987fe05d67fa3416b7b1667c0 (plain)
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