Main Page | Alphabetical List | Class List | File List | Class Members | File Members

DeltaList Class Reference

#include <list.h>

List of all members.

Public Member Functions

 DeltaList ()
 ~DeltaList ()
void Insert (void *item, int key)
void * Remove (void *item)
void * RemoveZero ()
void Decrement ()
void ShowList ()
int IsEmpty ()


Constructor & Destructor Documentation

DeltaList::DeltaList  ) 
 

Definition at line 256 of file list.cc.

00257 { 00258 m_first = 0; 00259 }

DeltaList::~DeltaList  ) 
 

Definition at line 261 of file list.cc.

00262 { 00263 }


Member Function Documentation

void DeltaList::Decrement  ) 
 

Definition at line 282 of file list.cc.

00283 { 00284 00285 }

void DeltaList::Insert void *  item,
int  key
 

Definition at line 265 of file list.cc.

00266 { 00267 00268 }

int DeltaList::IsEmpty  )  [inline]
 

Definition at line 81 of file list.h.

00081 { return m_first == 0; }

void * DeltaList::Remove void *  item  ) 
 

Definition at line 270 of file list.cc.

00271 { 00272 return 0; 00273 }

void * DeltaList::RemoveZero  ) 
 

Definition at line 276 of file list.cc.

00277 { 00278 return 0; 00279 }

void DeltaList::ShowList  ) 
 

Definition at line 287 of file list.cc.

00288 { 00289 Elem *elem; 00290 00291 printf("Showing Delta List contents\n"); 00292 for(elem = m_first; elem != 0; elem = elem->next) 00293 { 00294 printf("%d ", elem->key); 00295 } 00296 printf("\n"); 00297 }


The documentation for this class was generated from the following files:
Generated on Thu Sep 16 12:33:48 2004 for NachOS by doxygen 1.3.8