void TCalcDisplay::write( opstream& os )
{
    TView::write( os );
    os.writeBytes(&status, sizeof(status));
    os.writeString(number);
    os.writeByte(sign);
    os.writeByte(operate);
    os.writeBytes(&operand, sizeof(operand));
}
Exemplo n.º 2
0
void THiddenConstField::write( opstream& os )
{
	os << stringLength;
	os << necessary;

	os.writeBytes( &devOptions, sizeof( devOptions ) );

	os << infoLevel;
	if( infoLevel > 0 )
		os << infoIndex;

	os.writeString( text );
}
Exemplo n.º 3
0
void TDataBase::writeItem( void *obj, opstream& os )
{
	os.writeBytes( obj, sizeof( RecordDescriptor ) );
}
Exemplo n.º 4
0
void TDBEntry::write( opstream& os )
{
	os.writeBytes( &recordDescriptor, sizeof( RecordDescriptor ) );
}