summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/3rdparty/7zip/unix/CPP/Common/MyXml.h
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@nokia.com>2012-03-15 14:53:47 +0100
committerKarsten Heimrich <karsten.heimrich@nokia.com>2012-03-19 16:14:04 +0100
commitbe3b47d0d504a3409ce66bd77bb8c0acff87c4f5 (patch)
tree09dfb02d484a4f395991972b828da71400fb761a /installerbuilder/libinstaller/3rdparty/7zip/unix/CPP/Common/MyXml.h
parent9fd62353cf7f973d78cd2093328ac15b5c4980b6 (diff)
Reorganize the tree, have better ifw.pri. Shadow build support.
Change-Id: I01fb12537f863ed0744979973c7e4153889cc5cb Reviewed-by: Tim Jenssen <tim.jenssen@nokia.com>
Diffstat (limited to 'installerbuilder/libinstaller/3rdparty/7zip/unix/CPP/Common/MyXml.h')
-rw-r--r--installerbuilder/libinstaller/3rdparty/7zip/unix/CPP/Common/MyXml.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/installerbuilder/libinstaller/3rdparty/7zip/unix/CPP/Common/MyXml.h b/installerbuilder/libinstaller/3rdparty/7zip/unix/CPP/Common/MyXml.h
deleted file mode 100644
index c6e8829ad..000000000
--- a/installerbuilder/libinstaller/3rdparty/7zip/unix/CPP/Common/MyXml.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// MyXml.h
-
-#ifndef __MYXML_H
-#define __MYXML_H
-
-#include "MyString.h"
-
-struct CXmlProp
-{
- AString Name;
- AString Value;
-};
-
-class CXmlItem
-{
- bool ParseItems(const AString &s, int &pos, int numAllowedLevels);
-
-public:
- AString Name;
- bool IsTag;
- CObjectVector<CXmlProp> Props;
- CObjectVector<CXmlItem> SubItems;
-
- bool ParseItem(const AString &s, int &pos, int numAllowedLevels);
-
- bool IsTagged(const AString &tag) const;
- int FindProperty(const AString &propName) const;
- AString GetPropertyValue(const AString &propName) const;
- AString GetSubString() const;
- int FindSubTag(const AString &tag) const;
- AString GetSubStringForTag(const AString &tag) const;
-};
-
-struct CXml
-{
- CXmlItem Root;
- bool Parse(const AString &s);
-};
-
-#endif