My Project
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() [1/2]

TopRed::TopRed ( )

Definition at line 655 of file f5lists.cc.

655 {
657 _toDo = NULL;
658}
LList * _toDo
Definition: f5lists.h:218
LList * _completed
Definition: f5lists.h:217
#define NULL
Definition: omList.c:12

◆ TopRed() [2/2]

TopRed::TopRed ( LList c,
LList t 
)

Definition at line 660 of file f5lists.cc.

660 {
661 _completed = c;
662 _toDo = t;
663}

Member Function Documentation

◆ getCompleted()

LList * TopRed::getCompleted ( )

Definition at line 665 of file f5lists.cc.

665 {
666 return _completed;
667}

◆ getToDo()

LList * TopRed::getToDo ( )

Definition at line 669 of file f5lists.cc.

669 {
670 return _toDo;
671}

Field Documentation

◆ _completed

LList* TopRed::_completed
private

Definition at line 217 of file f5lists.h.

◆ _toDo

LList* TopRed::_toDo
private

Definition at line 218 of file f5lists.h.


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