aboutsummaryrefslogtreecommitdiff
path: root/daemon/CapturedXML.h
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/CapturedXML.h')
-rw-r--r--daemon/CapturedXML.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/daemon/CapturedXML.h b/daemon/CapturedXML.h
index d37c59e..984d1f2 100644
--- a/daemon/CapturedXML.h
+++ b/daemon/CapturedXML.h
@@ -10,14 +10,16 @@
#ifndef __CAPTURED_XML_H__
#define __CAPTURED_XML_H__
-#include "XMLOut.h"
+#include "mxml/mxml.h"
-class CapturedXML : XMLOut {
+class CapturedXML {
public:
CapturedXML();
~CapturedXML();
- const char* getXML();
+ char* getXML(); // the string should be freed by the caller
void write(char* path);
+private:
+ mxml_node_t* getTree();
};
#endif //__CAPTURED_XML_H__