bool isMultiFile ) {
if(MYDEBUG) MESSAGE( "SMESH_Gen_i::SaveASCII" );
SALOMEDS::TMPFile_var aStreamFile = Save( theComponent, theURL, isMultiFile );
+
+ #ifndef WIN32
return aStreamFile._retn();
+ #endif
//after usual saving needs to encipher binary to text string
//Any binary symbol will be represent as "|xx" () hexadecimal format number
const char* theURL,
bool isMultiFile ) {
if(MYDEBUG) MESSAGE( "SMESH_Gen_i::LoadASCII" );
+
+ #ifndef WIN32
return Load( theComponent, theStream, theURL, isMultiFile );
+ #endif
//before call main ::Load method it's need for decipher text format to
//binary ( "|xx" => x' )