#include <bars.h>
Inheritance diagram for DDeckerBottom:
Public Member Functions | |
BOOL | Read (CCLexFile &) |
BOOL | Write (CCLexFile &file) |
Writes a tokenized form of a DDeckerBottom to the given file. | |
virtual BOOL | Read (String_256 *) |
virtual BOOL | Write (String_256 *) |
Writes the control to the given string. |
Definition at line 411 of file bars.h.
|
Implements BarItem. Definition at line 419 of file bars.h. 00419 { return TRUE; }
|
|
Implements BarItem. Definition at line 416 of file bars.h. 00416 { return TRUE; }
|
|
Writes the control to the given string.
Implements BarItem. Definition at line 4398 of file bars.cpp. 04399 { 04400 ERROR2IF(pString == NULL,FALSE,"Write given null string"); 04401 *pString += TokenTable[TOKEN_DDECKER_BOTTOM].Token; 04402 return TRUE; 04403 }
|
|
Writes a tokenized form of a DDeckerBottom to the given file.
Implements BarItem. Definition at line 4379 of file bars.cpp. 04380 { 04381 return (file.PutToken(TokenTable[TOKEN_DDECKER_BOTTOM].Token)); 04382 }
|