My Project  UNKNOWN_GIT_VERSION
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 656 of file f5lists.cc.

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

◆ TopRed() [2/2]

TopRed::TopRed ( LList c,
LList t 
)

Definition at line 661 of file f5lists.cc.

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

Member Function Documentation

◆ getCompleted()

LList * TopRed::getCompleted ( )

Definition at line 666 of file f5lists.cc.

666  {
667  return _completed;
668 }
LList * _completed
Definition: f5lists.h:217

◆ getToDo()

LList * TopRed::getToDo ( )

Definition at line 670 of file f5lists.cc.

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

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: