summaryrefslogtreecommitdiff
path: root/src/xmlparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlparser.h')
-rw-r--r--src/xmlparser.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/xmlparser.h b/src/xmlparser.h
index 6247497..b245c6d 100644
--- a/src/xmlparser.h
+++ b/src/xmlparser.h
@@ -27,17 +27,17 @@
*/
#pragma once
-#include "task.h"
+#include "node.h"
#include "saxparser.h"
#include <stack>
-#include "tasktree.h"
+#include "nodetree.h"
class XmlParser
: public SAXParser
{
public:
- XmlParser(TaskTree *tree);
+ XmlParser(NodeTree *tree);
~XmlParser();
void startTag(std::string name, attributes_t &attr);
@@ -45,9 +45,9 @@ public:
void characterData(const std::string &data);
private:
- std::stack<taskid_t> parents;
+ std::stack<nodeid_t> parents;
std::string cdata;
- node_t *node;
- TaskTree *tree;
+ Node *node;
+ NodeTree *tree;
std::string attr_name;
};