#include <combshps.h>
Inheritance diagram for SelObjPathList:
Public Member Functions | |
SelObjPathList () | |
SelObjPathList (Node *pThisSelNode) | |
~SelObjPathList () | |
Node * | GetSelNode () |
INT32 | GetCount () |
BOOL | HasProducedPaths () |
void | SetProducedPaths (BOOL state) |
SelObjPathListItem * | GetFirstItem () |
SelObjPathListItem * | GetLastItem () |
SelObjPathListItem * | GetNextItem (SelObjPathListItem *pItem) |
void | AddTailItem (SelObjPathListItem *pItem) |
Private Attributes | |
Node * | pSelNode |
List | ListOfSelObjPaths |
BOOL | ProducedPaths |
Definition at line 193 of file combshps.h.
|
Definition at line 198 of file combshps.h. 00198 : pSelNode(NULL) { ProducedPaths = FALSE; }
|
|
Definition at line 199 of file combshps.h. 00199 : pSelNode(pThisSelNode) { ProducedPaths = FALSE; }
|
|
Definition at line 202 of file combshps.h. 00202 { ListOfSelObjPaths.DeleteAll(); }
|
|
Definition at line 213 of file combshps.h. 00213 { ListOfSelObjPaths.AddTail(pItem); }
|
|
Definition at line 205 of file combshps.h. 00205 { return ListOfSelObjPaths.GetCount(); }
|
|
Definition at line 210 of file combshps.h. 00210 { return (SelObjPathListItem*) ListOfSelObjPaths.GetHead(); }
|
|
Definition at line 211 of file combshps.h. 00211 { return (SelObjPathListItem*) ListOfSelObjPaths.GetTail(); }
|
|
Definition at line 212 of file combshps.h. 00212 { return (SelObjPathListItem*) ListOfSelObjPaths.GetNext(pItem); }
|
|
Definition at line 204 of file combshps.h. 00204 { return pSelNode; }
|
|
Definition at line 206 of file combshps.h. 00206 { return ProducedPaths; }
|
|
Definition at line 208 of file combshps.h. 00208 { ProducedPaths = state; }
|
|
Definition at line 217 of file combshps.h. |
|
Definition at line 218 of file combshps.h. |
|
Definition at line 216 of file combshps.h. |