From ed50ff1bee1a6524cd3100046a791473811c8386 Mon Sep 17 00:00:00 2001 From: rahuel Date: Wed, 16 Feb 2005 07:53:03 +0000 Subject: [PATCH] New Components for the test of errors/Signals --- idl/Makefile.in | 2 ++ idl/SIGNALSComponent.idl | 40 ++++++++++++++++++++++++++++++++ idl/UndefinedSymbolComponent.idl | 39 +++++++++++++++++++++++++++++++ 3 files changed, 81 insertions(+) create mode 100755 idl/SIGNALSComponent.idl create mode 100755 idl/UndefinedSymbolComponent.idl diff --git a/idl/Makefile.in b/idl/Makefile.in index c3289ca..86664b7 100644 --- a/idl/Makefile.in +++ b/idl/Makefile.in @@ -20,6 +20,8 @@ IDL_FILES = \ SyrControlComponent.idl \ TypesCheck.idl \ DataStreamComponent.idl \ + SIGNALSComponent.idl \ + UndefinedSymbolComponent.idl \ Calculator.idl PY_CLIENT_IDL = $(IDL_FILES) diff --git a/idl/SIGNALSComponent.idl b/idl/SIGNALSComponent.idl new file mode 100755 index 0000000..a116dcf --- /dev/null +++ b/idl/SIGNALSComponent.idl @@ -0,0 +1,40 @@ +// Copyright (C) 2003 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// +// +// +// File : SIGNALSComponent.idl +// Author : +// $Header$ + +#ifndef _SIGNALSCOMPONENT_IDL +#define _SIGNALSCOMPONENT_IDL + +#include "SALOME_Component.idl" + +module SuperVisionTest { + + interface SIGNALSComponent : Engines::Component { + long SIGSEGVfunc() ; + long SIGFPEfunc( in long a , in long b ) ; + }; +}; + + +#endif diff --git a/idl/UndefinedSymbolComponent.idl b/idl/UndefinedSymbolComponent.idl new file mode 100755 index 0000000..5a36bde --- /dev/null +++ b/idl/UndefinedSymbolComponent.idl @@ -0,0 +1,39 @@ +// Copyright (C) 2003 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// +// +// +// File : UndefinedSymbolComponent.idl +// Author : +// $Header$ + +#ifndef _UNDEFINEDSYMBOLCOMPONENT_IDL +#define _UNDEFINEDSYMBOLCOMPONENT_IDL + +#include "SALOME_Component.idl" + +module SuperVisionTest { + + interface UndefinedSymbolComponent : Engines::Component { + long UndefinedSymbol() ; + }; +}; + + +#endif -- 2.39.2