Salome HOME
4e35aa38df9fd1a61b060fb970f0ca85bfd055db
[modules/yacs.git] / src / runtime / XMLNode.hxx
1
2 #ifndef _XMLNODE_HXX_
3 #define _XMLNODE_HXX_
4
5 #include "ElementaryNode.hxx"
6
7 namespace YACS
8 {
9   namespace ENGINE
10   {
11
12     class XmlNode:public ENGINE::ElementaryNode
13     {
14     public:
15       XmlNode(const std::string& name);
16       virtual void execute();
17       virtual void set_script(const std::string& script);
18     protected:
19       std::string _script;
20     };
21     
22
23   }
24 }
25
26 #endif