Version: 9.16.0
CppPorts.hxx
Go to the documentation of this file.
1// Copyright (C) 2006-2026 CEA, EDF
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
27namespace YACS
28{
29 namespace ENGINE
30 {
31 class Any;
32
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);
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:
60 };
61
63 {
64 public:
65 OutputCppPort(const std::string& name, Node * node, TypeCode * type);
66 OutputCppPort(const OutputCppPort& other, Node *newHelder);
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:
75 };
76
77
78
79 }
80}
81
82#endif
: Interface for management of storage of data formated dynamically in its TypeCode....
Definition: Any.hxx:79
Class for C++ Ports.
Definition: CppPorts.hxx:40
virtual YACS::ENGINE::Any * getCppObj() const
Definition: CppPorts.cxx:90
InputPort * clone(Node *newHelder) const
Definition: CppPorts.cxx:85
InputCppPort(const std::string &name, Node *node, TypeCode *type)
Definition: CppPorts.cxx:34
bool edIsManuallyInitialized() const
Specifies if this port has been manually set by the call of InputPort::edInit.
Definition: CppPorts.cxx:54
virtual void exRestoreInit()
Restore the saved data value to current data value.
Definition: CppPorts.cxx:120
void edRemoveManInit()
Removes eventually previous manual initialisation.
Definition: CppPorts.cxx:59
virtual bool isEmpty()
Definition: CppPorts.cxx:100
virtual void exSaveInit()
Save the current data value for further reinitialization of the port.
Definition: CppPorts.cxx:109
YACS::ENGINE::Any * _initData
Definition: CppPorts.hxx:59
void releaseData() override
Definition: CppPorts.cxx:70
virtual std::string dump()
Definition: CppPorts.cxx:128
virtual void put(const void *data)
Definition: CppPorts.cxx:65
YACS::ENGINE::Any * _data
Definition: CppPorts.hxx:58
Base class for Input Ports.
Definition: InputPort.hxx:44
Base class for all nodes.
Definition: Node.hxx:70
OutputPort * clone(Node *newHelder) const
Definition: CppPorts.cxx:185
virtual std::string dump()
Definition: CppPorts.cxx:195
virtual YACS::ENGINE::Any * get() const
Definition: CppPorts.cxx:190
YACS::ENGINE::Any * _data
Definition: CppPorts.hxx:74
virtual void put(const void *data)
Definition: CppPorts.cxx:169
OutputCppPort(const std::string &name, Node *node, TypeCode *type)
Definition: CppPorts.cxx:149
Base class for all type objects.
Definition: TypeCode.hxx:68