Stub of algorithm in new place.

This commit is contained in:
akl 2014-05-16 16:49:16 +04:00
parent 808810c388
commit 6f0049749d
3 changed files with 23 additions and 0 deletions

View File

@ -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);
};
};

View File

@ -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
//=====================================================================================

View File

@ -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 //
//-----------------------------------------------------------------------//