#include <bars.h>
Inheritance diagram for BarLineFeed:
Public Member Functions | |
BOOL | Read (CCLexFile &) |
BOOL | Write (CCLexFile &file) |
Writes a tokenized form of the linefeed to the given file. | |
virtual BOOL | Read (String_256 *) |
virtual BOOL | Write (String_256 *) |
Writes the control to the given string. |
Definition at line 506 of file bars.h.
|
Implements BarItem. Definition at line 514 of file bars.h. 00514 { return TRUE; }
|
|
Implements BarItem. Definition at line 511 of file bars.h. 00511 { return TRUE; }
|
|
Writes the control to the given string.
Implements BarItem. Definition at line 4484 of file bars.cpp. 04485 { 04486 ERROR2IF(pString == NULL,FALSE,"Write given null string"); 04487 *pString += TokenTable[TOKEN_BAR_LINEFEED].Token; 04488 return TRUE; 04489 }
|
|
Writes a tokenized form of the linefeed to the given file.
Implements BarItem. Definition at line 4465 of file bars.cpp. 04466 { 04467 return (file.PutToken(TokenTable[TOKEN_BAR_LINEFEED].Token)); 04468 }
|