Salome HOME
Help to debug when troubles at launch time
[modules/yacs.git] / src / runtime / CppPorts.hxx
index 9745e6f913c560b50468b3c4d847c9e5c9698d2a..5997b537e5d0fe517b44350f064de4c3d6f31634 100644 (file)
@@ -1,8 +1,25 @@
+// Copyright (C) 2006-2024  CEA, EDF
+//
+// 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
+//
 
 #ifndef _CPPPORTS_HXX_
 #define _CPPPORTS_HXX_
 
-#include "Any.hxx"
 
 #include "InputPort.hxx"
 #include "OutputPort.hxx"
@@ -11,6 +28,7 @@ namespace YACS
 {
   namespace ENGINE
   {
+    class Any;
 
 /*! \brief Class for C++ Ports
  *
@@ -26,11 +44,12 @@ namespace YACS
       ~InputCppPort();
       bool edIsManuallyInitialized() const;
       void edRemoveManInit();
-      virtual void put(const void *data) throw(ConversionException);
-      void put(YACS::ENGINE::Any *data) throw(ConversionException);
+      virtual void put(const void *data);
+      void put(YACS::ENGINE::Any *data);
+      void releaseData() override;
       InputPort *clone(Node *newHelder) const;
       virtual YACS::ENGINE::Any * getCppObj() const;
-      void *get() const throw(Exception);
+      void *get() const ;
       virtual bool isEmpty();
       virtual void exSaveInit();
       virtual void exRestoreInit();
@@ -46,8 +65,8 @@ namespace YACS
       OutputCppPort(const std::string& name, Node * node, TypeCode * type);
       OutputCppPort(const OutputCppPort& other, Node *newHelder);
       ~OutputCppPort();
-      virtual void put(const void *data) throw(ConversionException);
-      void put(YACS::ENGINE::Any *data) throw(ConversionException);
+      virtual void put(const void *data);
+      void put(YACS::ENGINE::Any *data);
       OutputPort *clone(Node *newHelder) const;
       virtual YACS::ENGINE::Any * get() const;
       virtual std::string dump();