Public Member Functions | |
Item (const TCHAR *s, INT32 ps, ArgType t) | |
~Item () | |
Public Attributes | |
TCHAR * | str |
ArgType | type |
INT32 | pos |
Item * | next |
Static Public Attributes | |
static Item * | head = 0 |
static Item * | tail = 0 |
Definition at line 223 of file makemsg.cpp.
|
Definition at line 243 of file makemsg.cpp. 00244 { 00245 camStrcpy(str = new TCHAR[camStrlen(s) + 1], s); 00246 pos = ps; 00247 type = t; 00248 next = 0; 00249 if (tail) tail = tail->next = this; 00250 else head = tail = this; 00251 }
|
|
Definition at line 258 of file makemsg.cpp.
|
|
Definition at line 230 of file makemsg.cpp. |
|
Definition at line 228 of file makemsg.cpp. |
|
Definition at line 227 of file makemsg.cpp. |
|
Definition at line 225 of file makemsg.cpp. |
|
Definition at line 231 of file makemsg.cpp. |
|
Definition at line 226 of file makemsg.cpp. |