#include <bars.h>
Inheritance diagram for BarSeparator:
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 482 of file bars.h.
|
Implements BarItem. Definition at line 490 of file bars.h. 00490 { return TRUE; }
|
|
Implements BarItem. Definition at line 487 of file bars.h. 00487 { return TRUE; }
|
|
Writes the control to the given string.
Implements BarItem. Definition at line 4316 of file bars.cpp. 04317 { 04318 ERROR2IF(pString == NULL,FALSE,"Write given null string"); 04319 *pString += TokenTable[TOKEN_BAR_SEPARATOR].Token; 04320 return TRUE; 04321 }
|
|
Writes a tokenized form of the separator to the given file.
Implements BarItem. Definition at line 4297 of file bars.cpp. 04298 { 04299 return (file.PutToken(TokenTable[TOKEN_BAR_SEPARATOR].Token)); 04300 }
|