Public Member Functions | Private Attributes
TopRed Class Reference

#include <f5lists.h>

Public Member Functions

 TopRed ()
 
 TopRed (LList *c, LList *t)
 
LListgetCompleted ()
 
LListgetToDo ()
 

Private Attributes

LList_completed
 
LList_toDo
 

Detailed Description

Definition at line 215 of file f5lists.h.

Constructor & Destructor Documentation

TopRed::TopRed ( )

Definition at line 655 of file f5lists.cc.

655  {
656  _completed = NULL;
657  _toDo = NULL;
658 }
LList * _toDo
Definition: f5lists.h:218
LList * _completed
Definition: f5lists.h:217
#define NULL
Definition: omList.c:10
TopRed::TopRed ( LList c,
LList t 
)

Definition at line 660 of file f5lists.cc.

660  {
661  _completed = c;
662  _toDo = t;
663 }
LList * _toDo
Definition: f5lists.h:218
LList * _completed
Definition: f5lists.h:217

Member Function Documentation

LList * TopRed::getCompleted ( )

Definition at line 665 of file f5lists.cc.

665  {
666  return _completed;
667 }
LList * _completed
Definition: f5lists.h:217
LList * TopRed::getToDo ( )

Definition at line 669 of file f5lists.cc.

669  {
670  return _toDo;
671 }
LList * _toDo
Definition: f5lists.h:218

Field Documentation

LList* TopRed::_completed
private

Definition at line 217 of file f5lists.h.

LList* TopRed::_toDo
private

Definition at line 218 of file f5lists.h.


The documentation for this class was generated from the following files: