List of ancestors:
Desc. & Idea | Warnings | Methods | Attributes | Operators | Specials |
|
![]() |
![]() |
![]() |
![]() |
![]() |
Methods beginning with Get or Set (get/set) are usually intended to access Attributes of same name (exceptions will be marked). |
This class represents a single line of text in the TStrList class.
Public:
char *GetLine() | |
TStrItem *GetNext() | |
TStrItem *GetPrior() | |
void PutAfter(TStrItem *Who) | |
void PutBefore(TStrItem *Who) | |
void SetLine(const char *val) | |
![]() |
TStrItem(const char *ALine, TStrItem *After=NULL) |
void Unchain() | |
![]() |
~TStrItem() |
Protected:
Private:
Puts this item into the bi-directional list behind the argument.
Puts this item into the bi-directional list before the argument.
Constructor of the class. The string is copied not just the pointer taken.
ALine .. initiate string (copy is made)
Who ... item to chain behind
Removes the item from the bi-directional list. The consistency of the list is kept
Public:
Protected:
Private:
Pointer to the represented text.
The setLine method copies the line.
Pointer to the next item in the bi-directinal list.
Pointer to the previous item in the bi-directinal list.
The string from the constructor is copied not just the pointer taken.
Same function performs the SetLine function.
TStrList