#include <bars.h>
Inheritance diagram for DDeckerEnd:
Public Member Functions | |
BOOL | Read (CCLexFile &) |
BOOL | Write (CCLexFile &file) |
Writes a tokenized form of a DDeckerEnd to the given file. | |
virtual BOOL | Read (String_256 *) |
virtual BOOL | Write (String_256 *) |
Writes the control to the given string. |
Definition at line 434 of file bars.h.
|
Implements BarItem. Definition at line 442 of file bars.h. 00442 { return TRUE; }
|
|
Implements BarItem. Definition at line 439 of file bars.h. 00439 { return TRUE; }
|
|
Writes the control to the given string.
Implements BarItem. Definition at line 4439 of file bars.cpp. 04440 { 04441 ERROR2IF(pString == NULL,FALSE,"Write given null string"); 04442 *pString += TokenTable[TOKEN_DDECKER_END].Token; 04443 return TRUE; 04444 }
|
|
Writes a tokenized form of a DDeckerEnd to the given file.
Implements BarItem. Definition at line 4420 of file bars.cpp. 04421 { 04422 return (file.PutToken(TokenTable[TOKEN_DDECKER_END].Token)); 04423 }
|