From: vsr Date: Tue, 22 Mar 2016 12:16:05 +0000 (+0300) Subject: Remove deprecated staff X-Git-Tag: V7_8_0a2~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=f7f50c08d9bf91fee99fb0a51256d75a49b11ba6;p=samples%2Fcomponent.git Remove deprecated staff --- diff --git a/idl/CMakeLists.txt b/idl/CMakeLists.txt index 3c83c4b..24f67c2 100755 --- a/idl/CMakeLists.txt +++ b/idl/CMakeLists.txt @@ -22,7 +22,6 @@ INCLUDE(UseOmniORB) # Provided by KERNEL INCLUDE_DIRECTORIES( ${OMNIORB_INCLUDE_DIR} ${KERNEL_INCLUDE_DIRS} - ${MED_INCLUDE_DIRS} ${PROJECT_BINARY_DIR}/idl ) @@ -43,12 +42,10 @@ SET(SalomeIDLCOMPONENT_IDLSOURCES SET(_idl_include_dirs ${KERNEL_ROOT_DIR}/idl/salome - ${MED_ROOT_DIR}/idl/salome ) SET(_idl_link_flags ${KERNEL_SalomeIDLKernel} - ${MED_SalomeIDLMED} ) OMNIORB_ADD_MODULE(SalomeIDLCOMPONENT "${SalomeIDLCOMPONENT_IDLSOURCES}" "${_idl_include_dirs}" "${_idl_link_flags}") diff --git a/idl/Calculator.idl b/idl/Calculator.idl deleted file mode 100644 index 2a43c60..0000000 --- a/idl/Calculator.idl +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE -// -// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// 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, or (at your option) any later version. -// -// 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 -// -// File : Calculator.idl -// Author : Laurent DADA CEA - -#ifndef CALCULATOR_IDL -#define CALCULATOR_IDL - -#include "SALOME_Component.idl" -#include "MED.idl" - - -module SuperVisionTest { - -interface Calculator : Engines::EngineComponent -{ - - SALOME_MED::FIELDDOUBLE PutToStudy(in SALOME_MED::FIELDDOUBLE field1, in long theStudyId); - SALOME_MED::FIELDDOUBLE Add(in SALOME_MED::FIELDDOUBLE field1, in SALOME_MED::FIELDDOUBLE field2); - SALOME_MED::FIELDDOUBLE Mul(in SALOME_MED::FIELDDOUBLE field1, in double x1); - SALOME_MED::FIELDDOUBLE Constant(in SALOME_MED::FIELDDOUBLE field1, in double x1); - void writeMEDfile(in SALOME_MED::FIELDDOUBLE field1, in string fileName); - -}; -}; - - - -#endif