Salome HOME
PR: merge from BR_DATACONV_PR tag "mergeto_trunk_25oct06"
[modules/yacs.git] / src / runtime / XMLNode.hxx
diff --git a/src/runtime/XMLNode.hxx b/src/runtime/XMLNode.hxx
new file mode 100644 (file)
index 0000000..4e35aa3
--- /dev/null
@@ -0,0 +1,26 @@
+
+#ifndef _XMLNODE_HXX_
+#define _XMLNODE_HXX_
+
+#include "ElementaryNode.hxx"
+
+namespace YACS
+{
+  namespace ENGINE
+  {
+
+    class XmlNode:public ENGINE::ElementaryNode
+    {
+    public:
+      XmlNode(const std::string& name);
+      virtual void execute();
+      virtual void set_script(const std::string& script);
+    protected:
+      std::string _script;
+    };
+    
+
+  }
+}
+
+#endif