aboutsummaryrefslogtreecommitdiff
path: root/daemon/XMLReader.h
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/XMLReader.h')
-rw-r--r--daemon/XMLReader.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/daemon/XMLReader.h b/daemon/XMLReader.h
deleted file mode 100644
index ac0098a..0000000
--- a/daemon/XMLReader.h
+++ /dev/null
@@ -1,27 +0,0 @@
-/**
- * Copyright (C) ARM Limited 2010-2012. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- */
-
-#ifndef _XMLREADER_H
-#define _XMLREADER_H
-
-class XMLReader {
-public:
- XMLReader(const char* xmlstring);
- ~XMLReader();
- char* nextTag();
- void getAttribute(const char* name, char* value, int maxSize, const char* defValue);
- int getAttributeAsInteger(const char* name, int defValue);
- bool getAttributeAsBoolean(const char* name, bool defValue);
- int getAttributeLength(const char* name);
-private:
- char* mPtr;
- bool mFirstTime, mNoMore;
- char mEndXML[128];
-};
-
-#endif // _XMLREADER_H