#include <bars.h>
Inheritance diagram for DDeckerTop:
Public Member Functions | |
BOOL | Read (CCLexFile &) |
BOOL | Write (CCLexFile &file) |
Writes a tokenized form of a DDeckerTop to the given file. | |
virtual BOOL | Read (String_256 *) |
virtual BOOL | Write (String_256 *) |
Writes the control to the given string. |
Definition at line 388 of file bars.h.
|
Implements BarItem. Definition at line 396 of file bars.h. 00396 { return TRUE; }
|
|
Implements BarItem. Definition at line 393 of file bars.h. 00393 { return TRUE; }
|
|
Writes the control to the given string.
Implements BarItem. Definition at line 4357 of file bars.cpp. 04358 { 04359 ERROR2IF(pString == NULL,FALSE,"Write given null string"); 04360 *pString += TokenTable[TOKEN_DDECKER_TOP].Token; 04361 return TRUE; 04362 }
|
|
Writes a tokenized form of a DDeckerTop to the given file.
Implements BarItem. Definition at line 4338 of file bars.cpp. 04339 { 04340 return (file.PutToken(TokenTable[TOKEN_DDECKER_TOP].Token)); 04341 }
|