Salome HOME
736a0f229696071297001001bd416d44cc9f9895
[modules/yacs.git] / src / runtime / CppPorts.hxx
1 // Copyright (C) 2006-2023  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef _CPPPORTS_HXX_
21 #define _CPPPORTS_HXX_
22
23
24 #include "InputPort.hxx"
25 #include "OutputPort.hxx"
26
27 namespace YACS
28 {
29   namespace ENGINE
30   {
31     class Any;
32
33 /*! \brief Class for C++ Ports
34  *
35  * \ingroup Ports
36  *
37  * \see CppNode
38  */
39     class InputCppPort : public InputPort
40     {
41     public:
42       InputCppPort(const std::string& name, Node * node, TypeCode * type);
43       InputCppPort(const InputCppPort& other, Node *newHelder);
44       ~InputCppPort();
45       bool edIsManuallyInitialized() const;
46       void edRemoveManInit();
47       virtual void put(const void *data);
48       void put(YACS::ENGINE::Any *data);
49       void releaseData() override;
50       InputPort *clone(Node *newHelder) const;
51       virtual YACS::ENGINE::Any * getCppObj() const;
52       void *get() const ;
53       virtual bool isEmpty();
54       virtual void exSaveInit();
55       virtual void exRestoreInit();
56       virtual std::string dump();
57     protected:
58       YACS::ENGINE::Any* _data;
59       YACS::ENGINE::Any* _initData;
60     };
61
62     class OutputCppPort : public OutputPort
63     {
64     public:
65       OutputCppPort(const std::string& name, Node * node, TypeCode * type);
66       OutputCppPort(const OutputCppPort& other, Node *newHelder);
67       ~OutputCppPort();
68       virtual void put(const void *data);
69       void put(YACS::ENGINE::Any *data);
70       OutputPort *clone(Node *newHelder) const;
71       virtual YACS::ENGINE::Any * get() const;
72       virtual std::string dump();
73     protected:
74       YACS::ENGINE::Any* _data;
75     };
76
77
78
79   }
80 }
81
82 #endif