Salome HOME
ff19ca71f586759d10515aa1fdf4e4346dd5d6f0
[modules/yacs.git] / src / engine / AnyInputPort.hxx
1 //  Copyright (C) 2006-2008  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.
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 #ifndef __ANYINPUTPORT_HXX__
20 #define __ANYINPUTPORT_HXX__
21
22 #include "InputPort.hxx"
23 #include <string>
24
25 namespace YACS
26 {
27   namespace ENGINE
28   {
29     class AnyInputPort : public InputPort
30     {
31     public:
32       AnyInputPort(const std::string& name, Node *node, TypeCode* type);
33       AnyInputPort(const  AnyInputPort& other, Node *newHelder);
34       virtual ~AnyInputPort();
35       void exSaveInit();
36       void exRestoreInit();
37       Any *getValue() const { return _value; }
38       int getIntValue() const { return _value->getIntValue(); }
39       void put(Any *data);
40       void *get() const;
41       virtual std::string getAsString();
42       virtual bool isEmpty();
43       void put(const void *data) throw(ConversionException);
44       InputPort *clone(Node *newHelder) const;
45       std::string dump();
46       virtual std::string typeName() {return "YACS__ENGINE__AnyInputPort";}
47     protected:
48       Any *_value;
49     };
50   }
51 }
52
53 #endif