]> SALOME platform Git repositories - samples/component.git/commitdiff
Salome HOME
Remove deprecated staff
authorvsr <vsr@opencascade.com>
Tue, 22 Mar 2016 12:16:05 +0000 (15:16 +0300)
committervsr <vsr@opencascade.com>
Tue, 22 Mar 2016 12:16:05 +0000 (15:16 +0300)
idl/CMakeLists.txt
idl/Calculator.idl [deleted file]

index 3c83c4b9480f3929f2b36febcd258b139264575a..24f67c201a5d54639a62898cc642e10ca18ec036 100755 (executable)
@@ -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 (file)
index 2a43c60..0000000
+++ /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