Example #1
0
//----------------------------------------------------------------//
STLString USCgt::ReadStringEntry ( USStream& stream ) {

	char entryType = stream.Read < char >();
	assert ( entryType == 'S' );
	
	return ReadUnicodeAsASCII ( stream );
}
Example #2
0
//----------------------------------------------------------------//
STLString ZLCgt::ReadStringEntry ( ZLStream& stream ) {

	char entryType = stream.Read < char >( 0 );
	UNUSED ( entryType );
	assert ( entryType == 'S' );
	
	return ReadUnicodeAsASCII ( stream );
}