diff options
Diffstat (limited to 'include/PLList.h')
-rw-r--r-- | include/PLList.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/PLList.h b/include/PLList.h index c722900..f729ffe 100644 --- a/include/PLList.h +++ b/include/PLList.h @@ -5,12 +5,13 @@ #include <SList.h> #ifdef __cplusplus -class PLList:public PriorityList { private: +class PLList:public PriorityList { + private: SList Head; public: PLList(void); - virtual ~PLList(void); + virtual ~ PLList(void); virtual Key_t ReadKey(Cell C); virtual Datas_t ReadDatas(Cell C); |