aboutsummaryrefslogtreecommitdiff
path: root/daemon/SessionXML.h
diff options
context:
space:
mode:
authorDrew Richardson <drew.richardson@arm.com>2012-05-15 12:00:00 -0700
committerDrew Richardson <drew.richardson@arm.com>2014-12-19 15:27:22 -0800
commit3abe11d177c6c93fab66d04fd42d11452a0c508e (patch)
tree9ddc541993bd0859f27bf7468e44b5155e5a0494 /daemon/SessionXML.h
parent3de04f9cecf0d50e895f9fe0164ecbbbae997319 (diff)
gator: Version 5.105.10
Signed-off-by: Drew Richardson <drew.richardson@arm.com>
Diffstat (limited to 'daemon/SessionXML.h')
-rw-r--r--daemon/SessionXML.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/daemon/SessionXML.h b/daemon/SessionXML.h
index 4649685..c2b5489 100644
--- a/daemon/SessionXML.h
+++ b/daemon/SessionXML.h
@@ -9,7 +9,7 @@
#ifndef SESSION_XML_H
#define SESSION_XML_H
-#include "XMLReader.h"
+#include "mxml/mxml.h"
#include "SessionData.h"
struct ConfigParameters {
@@ -26,15 +26,15 @@ struct ConfigParameters {
class SessionXML {
public:
- SessionXML(const char * str);
+ SessionXML(const char* str);
~SessionXML();
void parse();
ConfigParameters parameters;
private:
char* mSessionXML;
char* mPath;
- void sessionTag(XMLReader* in);
- void sessionImage(XMLReader* in);
+ void sessionTag(mxml_node_t *tree, mxml_node_t *node);
+ void sessionImage(mxml_node_t *node);
};
#endif // SESSION_XML_H