Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef __GELSTACK_H__
00017 #define __GELSTACK_H__
00018
00019 #include "gelLinkedList.h"
00020
00021 namespace gel
00022 {
00025
00026 template <class dType> class GelStack : public GelLinkedList<dType>
00027 {
00028 public:
00030
00031 GelStack() {}
00032
00034 ~GelStack() {}
00035
00037
00038 void push( const dType &item ) { this->append(item); }
00039
00041
00042 dType pop() { return this->takeLast(); }
00043
00045
00046 dType peek() { return this->getLast(); }
00047
00049
00050 const dType peek() const { return this->getLast(); }
00051 };
00053 }
00054
00055 #endif // __GELSTACK_H__