From e6f5a9b412bfad0dcf151e1bb24553fb358c01bc Mon Sep 17 00:00:00 2001 From: fayolle Date: Mon, 18 May 2009 13:43:26 +0000 Subject: [PATCH] *** empty log message *** --- idl/Calcium_Ports.idl | 88 ------------------------------------------- 1 file changed, 88 deletions(-) delete mode 100644 idl/Calcium_Ports.idl diff --git a/idl/Calcium_Ports.idl b/idl/Calcium_Ports.idl deleted file mode 100644 index 9f1096498..000000000 --- a/idl/Calcium_Ports.idl +++ /dev/null @@ -1,88 +0,0 @@ -// Copyright (C) 2007-2008 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. -// -// 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 : Calcium_Ports.idl -// Author : Eric Fayolle, EDF -// -#ifndef _CALCIUM_PORTS_IDL_ -#define _CALCIUM_PORTS_IDL_ - -#include "SALOME_Ports.idl" - -/*! \file Calcium_Ports.idl \brief interfaces for Calcium ports -*/ - -module Ports { - -/*! \brief module that contains interfaces to define Calcium ports -*/ - module Calcium_Ports { - - const long UNLIMITED_STORAGE_LEVEL = -70; - enum DependencyType { UNDEFINED_DEPENDENCY, TIME_DEPENDENCY, ITERATION_DEPENDENCY }; - enum DateCalSchem { TI_SCHEM, TF_SCHEM , ALPHA_SCHEM}; - enum InterpolationSchem { L0_SCHEM, L1_SCHEM }; - enum ExtrapolationSchem { UNDEFINED_EXTRA_SCHEM, E0_SCHEM, E1_SCHEM}; - - // enum DisconnectDirective {UNDEFINED_DIRECTIVE,CONTINUE,STOP}; - typedef boolean DisconnectDirective; - const DisconnectDirective stop = FALSE; - const DisconnectDirective cont = TRUE; - - interface Calcium_Port : Ports::Data_Port, Ports::PortProperties { - void disconnect(in DisconnectDirective mode); - }; - - typedef sequence seq_long; - typedef sequence seq_float; - typedef sequence seq_double; - typedef sequence seq_string; - typedef sequence seq_boolean; - typedef seq_float seq_complex; - - interface Calcium_Integer_Port : Calcium_Port { - void put (in seq_long data, in double time, in long tag); - }; - - interface Calcium_Real_Port : Calcium_Port { - void put (in seq_float data, in double time, in long tag); - }; - - interface Calcium_Double_Port : Calcium_Port { - void put (in seq_double data, in double time, in long tag); - }; - - interface Calcium_String_Port : Calcium_Port { - void put (in seq_string data, in double time, in long tag); - }; - - interface Calcium_Logical_Port : Calcium_Port { - void put (in seq_boolean data, in double time, in long tag); - }; - - interface Calcium_Complex_Port : Calcium_Port { - void put (in seq_complex data, in double time, in long tag); - }; - - }; -}; - -#endif -- 2.39.2