mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-09 11:47:27 +05:00
This version of SMESH module is compatible with OpenFOAM module
This commit is contained in:
parent
a4c5cc32c6
commit
1010659f27
@ -31,6 +31,7 @@
|
|||||||
|
|
||||||
#include <TColStd_HSequenceOfInteger.hxx>
|
#include <TColStd_HSequenceOfInteger.hxx>
|
||||||
#include <TCollection_AsciiString.hxx>
|
#include <TCollection_AsciiString.hxx>
|
||||||
|
#include <Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString.hxx>
|
||||||
|
|
||||||
|
|
||||||
#ifdef _DEBUG_
|
#ifdef _DEBUG_
|
||||||
@ -440,6 +441,35 @@ Engines::TMPFile* SMESH_Gen_i::DumpPython (CORBA::Object_ptr theStudy,
|
|||||||
aScript += DumpPython_impl(aStudy->StudyId(), aMap, aMapNames,
|
aScript += DumpPython_impl(aStudy->StudyId(), aMap, aMapNames,
|
||||||
isPublished, isValidScript, aSavedTrace);
|
isPublished, isValidScript, aSavedTrace);
|
||||||
|
|
||||||
|
//inserting export for Object Names
|
||||||
|
TCollection_AsciiString def = "def RebuildData(theStudy):\n";
|
||||||
|
int pos = aScript.Search( def );
|
||||||
|
if ( pos != -1 )
|
||||||
|
{
|
||||||
|
//insert global definition
|
||||||
|
TCollection_AsciiString glob;
|
||||||
|
for( Resource_DataMapIteratorOfDataMapOfAsciiStringAsciiString It(aMap);
|
||||||
|
It.More(); It.Next() )
|
||||||
|
{
|
||||||
|
TCollection_AsciiString name = It.Value();
|
||||||
|
//check valid name
|
||||||
|
if ( !name.IsEmpty() && name.Search(' ') == -1 && name.Search( ':' ) == -1
|
||||||
|
&& !name.IsIntegerValue() && !name.IsEqual("Hypotheses") && !name.IsEqual("Algorithms") )
|
||||||
|
{
|
||||||
|
if ( glob.Length() > 0 )
|
||||||
|
glob += ',';
|
||||||
|
glob += name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ( glob.Length() > 0 )
|
||||||
|
{
|
||||||
|
glob.Prepend( "\tglobal " );
|
||||||
|
glob += '\n';
|
||||||
|
}
|
||||||
|
|
||||||
|
aScript.Insert( pos + def.Length(), glob );
|
||||||
|
}
|
||||||
|
|
||||||
int aLen = aScript.Length();
|
int aLen = aScript.Length();
|
||||||
unsigned char* aBuffer = new unsigned char[aLen+1];
|
unsigned char* aBuffer = new unsigned char[aLen+1];
|
||||||
strcpy((char*)aBuffer, aScript.ToCString());
|
strcpy((char*)aBuffer, aScript.ToCString());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user