Main Page   Packages   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Search  

C:/temp/src/j2k/QNX4/Fred/TrainSetting.cpp

Go to the documentation of this file.
00001 #include "TrainSetting.hpp"
00002 
00003 void  TrainSetting::insert( int* e ) {    // Insert an element at the current position
00004     DLinkList::insert( e );
00005 }
00006 void  TrainSetting::append( int* e ) {    // Insert Elem at tail of list
00007     DLinkList::append( e );
00008 }
00009 
00010 int*  TrainSetting::remove() {            // Remove and return current Elem
00011     return (int*)( DLinkList::remove() );
00012 }
00013 
00014 void  TrainSetting::setValue( int* e ) {  // Set current element's value
00015     DLinkList::setValue( e );    
00016 }
00017 
00018 int*  TrainSetting::getValue() {          // Return current element's value
00019     return (int*)( DLinkList::remove() );
00020 }
00021 
00022 
00023 

Generated on Sun Oct 14 18:46:42 2001 for Standard J2K Library by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001