]> SALOME platform Git repositories - modules/yacs.git/blob - src/runtime/CORBANode.hxx
Salome HOME
PR: merge from BR_DATACONV_PR tag "mergeto_trunk_25oct06"
[modules/yacs.git] / src / runtime / CORBANode.hxx
1
2 #ifndef _CORBANODE_HXX_
3 #define _CORBANODE_HXX_
4
5 #include "ElementaryNode.hxx"
6
7 namespace YACS
8 {
9   namespace ENGINE
10   {
11     
12     class CORBANode: public ENGINE::ElementaryNode 
13     {
14     public:
15       CORBANode(const std::string& name);
16       virtual void execute();
17       virtual void set_ref(const std::string& ref);
18       virtual void set_method(const std::string& method);
19     protected:
20       std::string _ref;
21       std::string _method;
22
23     protected:
24     };
25   }
26 }
27
28 #endif