00001 #include "Const.hpp"
00002
00003 class TrainSetting : public DLinkList {
00004
00005 public:
00006 void insert( int* );
00007 void append( int* );
00008 int* remove();
00009 void setValue( int* );
00010 int* getValue();
00011 };
00012
00013 void TrainSetting::insert( int* e ) {
00014 DLinkList::insert( e );
00015 }
00016 void TrainSetting::append( int* e ) {
00017 DLinkList::append( e );
00018 }
00019
00020 int* TrainSetting::remove() {
00021 return (int*)( DLinkList::remove() );
00022 }
00023
00024 void TrainSetting::setValue( int* e ) {
00025 DLinkList::setValue( e );
00026 }
00027
00028 int* TrainSetting::getValue() {
00029 return (int*)( DLinkList::remove() );
00030 }
00031
00032
00033