예제 #1
0
파일: USCgt.cpp 프로젝트: doches/moai-beta
//----------------------------------------------------------------//
STLString USCgt::ReadStringEntry ( USStream& stream ) {

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

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