summaryrefslogtreecommitdiff
path: root/include/SList.h
blob: 4407b2be72cd3fff98ca1965078049898512aa1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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