#include <impstr.h>
Inheritance diagram for ImportedStringList:
Public Member Functions | |
ImportedStringList () | |
void | AddTail (ImportedString *pItem) |
Adds the string item to the list. | |
ImportedString * | GetHead () |
Returns a ptr to the head of the list. | |
ImportedString * | GetNext (ImportedString *pItem) |
Returns a ptr to the next itme in the list. |
Definition at line 144 of file impstr.h.
|
Definition at line 149 of file impstr.h.
|
|
Adds the string item to the list.
Definition at line 229 of file impstr.cpp. 00230 { 00231 List::AddTail(pItem); 00232 }
|
|
Returns a ptr to the head of the list.
Definition at line 248 of file impstr.cpp. 00249 { 00250 return (ImportedString*)List::GetHead(); 00251 }
|
|
Returns a ptr to the next itme in the list.
Definition at line 267 of file impstr.cpp. 00268 { 00269 return (ImportedString*)List::GetNext(pItem); 00270 }
|