mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-25 02:20:34 +05:00
Stub of algorithm in new place.
This commit is contained in:
parent
808810c388
commit
6f0049749d
@ -5089,6 +5089,19 @@ module GEOM
|
||||
void Move( in object_list what,
|
||||
in SALOMEDS::SObject where,
|
||||
in long row );
|
||||
|
||||
/*!
|
||||
* \brief Get dependencies of the given object from other objects in study
|
||||
* \param list of IORs
|
||||
* \return texture byte array
|
||||
* Example of using:
|
||||
* SALOMEDS::TMPFile_var SeqFile =
|
||||
* myGeometryGUI->GetGeomGen()->GetDependencyTree( aListOfIORs );
|
||||
* char* buf;
|
||||
* buf = (char*) &SeqFile[0];
|
||||
*/
|
||||
SALOMEDS::TMPFile GetDependencyTree(in string_array strValues);
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -3039,6 +3039,14 @@ Engines::ListOfData* GEOM_Gen_i::getModifiedData(CORBA::Long studyId)
|
||||
return aResult._retn();
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
// function :
|
||||
// purpose :
|
||||
//=======================================================================
|
||||
SALOMEDS::TMPFile* GEOM_Gen_i::GetDependencyTree(const GEOM::string_array&) {
|
||||
|
||||
}
|
||||
|
||||
//=====================================================================================
|
||||
// EXPORTED METHODS
|
||||
//=====================================================================================
|
||||
|
@ -197,6 +197,8 @@ class GEOM_I_EXPORT GEOM_Gen_i: virtual public POA_GEOM::GEOM_Gen, virtual publi
|
||||
CORBA::Boolean theInheritFirstArg,
|
||||
CORBA::Boolean theAddPrefix);
|
||||
|
||||
SALOMEDS::TMPFile* GetDependencyTree(const GEOM::string_array&);
|
||||
|
||||
//-----------------------------------------------------------------------//
|
||||
// Transaction methods //
|
||||
//-----------------------------------------------------------------------//
|
||||
|
Loading…
Reference in New Issue
Block a user