#include <bars.h>
Inheritance diagram for BarNewPage:
Public Member Functions | |
BOOL | Read (CCLexFile &) |
BOOL | Write (CCLexFile &file) |
Writes a tokenized form of the separator to the given file. | |
virtual BOOL | Read (String_256 *) |
virtual BOOL | Write (String_256 *) |
Writes the control to the given string. |
Definition at line 459 of file bars.h.
|
Implements BarItem. Definition at line 467 of file bars.h. 00467 { return TRUE; }
|
|
Implements BarItem. Definition at line 464 of file bars.h. 00464 { return TRUE; }
|
|
Writes the control to the given string.
Implements BarItem. Definition at line 4275 of file bars.cpp. 04276 { 04277 ERROR2IF(pString == NULL,FALSE,"Write given null string"); 04278 *pString += TokenTable[TOKEN_BAR_NEWPAGE].Token; 04279 return TRUE; 04280 }
|
|
Writes a tokenized form of the separator to the given file.
Implements BarItem. Definition at line 4256 of file bars.cpp. 04257 { 04258 return (file.PutToken(TokenTable[TOKEN_BAR_NEWPAGE].Token)); 04259 }
|