Salome HOME
Update copyrights 2014.
[modules/yacs.git] / src / runtime / CppPorts.hxx
1 // Copyright (C) 2006-2014  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) throw(ConversionException);
48       void put(YACS::ENGINE::Any *data) throw(ConversionException);
49       InputPort *clone(Node *newHelder) const;
50       virtual YACS::ENGINE::Any * getCppObj() const;
51       void *get() const throw(Exception);
52       virtual bool isEmpty();
53       virtual void exSaveInit();
54       virtual void exRestoreInit();
55       virtual std::string dump();
56     protected:
57       YACS::ENGINE::Any* _data;
58       YACS::ENGINE::Any* _initData;
59     };
60
61     class OutputCppPort : public OutputPort
62     {
63     public:
64       OutputCppPort(const std::string& name, Node * node, TypeCode * type);
65       OutputCppPort(const OutputCppPort& other, Node *newHelder);
66       ~OutputCppPort();
67       virtual void put(const void *data) throw(ConversionException);
68       void put(YACS::ENGINE::Any *data) throw(ConversionException);
69       OutputPort *clone(Node *newHelder) const;
70       virtual YACS::ENGINE::Any * get() const;
71       virtual std::string dump();
72     protected:
73       YACS::ENGINE::Any* _data;
74     };
75
76
77
78   }
79 }
80
81 #endif