X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FSMESHGUI%2FSMESHGUI_Utils.h;h=41d2e674ed3408bcfe02f134fa9d714b6bebb275;hp=4a1a1c600fbf7659f3b90103df606f4782854be7;hb=6df8817c1a9827149025cc942249d7083f504d3d;hpb=7a3ecab720cc517ace17c5c4677fd3c20c0051ee diff --git a/src/SMESHGUI/SMESHGUI_Utils.h b/src/SMESHGUI/SMESHGUI_Utils.h index 4a1a1c600..41d2e674e 100644 --- a/src/SMESHGUI/SMESHGUI_Utils.h +++ b/src/SMESHGUI/SMESHGUI_Utils.h @@ -153,13 +153,22 @@ SMESHGUI_EXPORT } SMESHGUI_EXPORT - int GetNameOfSelectedIObjects( LightApp_SelectionMgr*, QString& ); + CORBA::Object_var EntryToObject( const QString& ); + + template typename TInterface::_var_type + EntryToInterface( const QString& theEntry ) + { + CORBA::Object_var anObj = EntryToObject( theEntry ); + if ( !CORBA::is_nil( anObj ) ) + return TInterface::_narrow( anObj ); + return TInterface::_nil(); + } SMESHGUI_EXPORT - _PTR(SObject) GetMeshOrSubmesh( _PTR(SObject) ); + int GetNameOfSelectedIObjects( LightApp_SelectionMgr*, QString& ); SMESHGUI_EXPORT - void ModifiedMesh( _PTR(SObject), bool, bool = false ); + _PTR(SObject) GetMeshOrSubmesh( _PTR(SObject) ); SMESHGUI_EXPORT void ShowHelpFile( const QString& );