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