// Copyright (C) 2011-2012 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef _HOMARD_CAS_IDL #define _HOMARD_CAS_IDL #include "SALOME_Component.idl" #include "SALOME_Exception.idl" #include "SALOMEDS.idl" #include "HOMARD_Iteration.idl" module HOMARD { typedef sequence extrema ; typedef sequence ListGroupType ; typedef sequence ListBoundaryGroupType ; interface HOMARD_Cas : Engines::EngineComponent { void SetName(in string NomCas) raises (SALOME::SALOME_Exception); string GetName() raises (SALOME::SALOME_Exception); void SetDirName(in string NomDir) raises (SALOME::SALOME_Exception); string GetDirName() raises (SALOME::SALOME_Exception); void SetConfType(in long ConfType) raises (SALOME::SALOME_Exception); long GetConfType() raises (SALOME::SALOME_Exception); HOMARD_Iteration GetIter0 () raises (SALOME::SALOME_Exception); string GetIter0Name () raises (SALOME::SALOME_Exception); HOMARD_Iteration NextIteration(in string NomIter) raises (SALOME::SALOME_Exception); void AddIteration (in string NomIteration) raises (SALOME::SALOME_Exception); extrema GetBoundingBox() raises (SALOME::SALOME_Exception); void SetBoundingBox(in extrema LesExtremes) raises (SALOME::SALOME_Exception); ListGroupType GetGroups() raises (SALOME::SALOME_Exception); void SetGroups(in ListGroupType ListGroup) raises (SALOME::SALOME_Exception); void AddGroup(in string Group) raises (SALOME::SALOME_Exception); long GetNumber() raises (SALOME::SALOME_Exception); string GetDumpPython() raises (SALOME::SALOME_Exception); ListBoundaryGroupType GetBoundaryGroup() raises (SALOME::SALOME_Exception); void AddBoundaryGroup(in string NomBoundary, in string Group) raises (SALOME::SALOME_Exception); void SetPyram(in long Pyram) raises (SALOME::SALOME_Exception); long GetPyram() raises (SALOME::SALOME_Exception); }; }; #endif