ImportedStringList Class Reference

Used to manage a list of ImportedString objects. More...

#include <impstr.h>

Inheritance diagram for ImportedStringList:

List CCObject SimpleCCObject List of all members.

Public Member Functions

 ImportedStringList ()
void AddTail (ImportedString *pItem)
 Adds the string item to the list.
ImportedStringGetHead ()
 Returns a ptr to the head of the list.
ImportedStringGetNext (ImportedString *pItem)
 Returns a ptr to the next itme in the list.

Detailed Description

Used to manage a list of ImportedString objects.

Author:
Mark_Neves (Xara Group Ltd) <camelotdev@xara.com>
Date:
14/8/96

Definition at line 144 of file impstr.h.


Constructor & Destructor Documentation

ImportedStringList::ImportedStringList  )  [inline]
 

Definition at line 149 of file impstr.h.

00149 {}


Member Function Documentation

void ImportedStringList::AddTail ImportedString pItem  ) 
 

Adds the string item to the list.

Author:
Mark_Neves (Xara Group Ltd) <camelotdev@xara.com>
Date:
14/8/96
Parameters:
pItem = ptr to the ImportedString object [INPUTS]
Returns:
-

Errors: -

See also:
-

Definition at line 229 of file impstr.cpp.

00230 {
00231     List::AddTail(pItem);
00232 }

ImportedString * ImportedStringList::GetHead  ) 
 

Returns a ptr to the head of the list.

Author:
Mark_Neves (Xara Group Ltd) <camelotdev@xara.com>
Date:
14/8/96
Parameters:
- [INPUTS]
Returns:
ptr to the head of the list

Errors: -

See also:
-

Definition at line 248 of file impstr.cpp.

00249 {
00250     return (ImportedString*)List::GetHead();
00251 }

ImportedString * ImportedStringList::GetNext ImportedString pItem  ) 
 

Returns a ptr to the next itme in the list.

Author:
Mark_Neves (Xara Group Ltd) <camelotdev@xara.com>
Date:
14/8/96
Parameters:
pItem = ptr to a ImportedString object in the list [INPUTS]
Returns:
ptr to the next itme in the list

Errors: -

See also:
-

Definition at line 267 of file impstr.cpp.

00268 {
00269     return (ImportedString*)List::GetNext(pItem);
00270 }


The documentation for this class was generated from the following files:
Generated on Sat Nov 10 03:55:25 2007 for Camelot by  doxygen 1.4.4