mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 13:14:59 -06:00
44 lines
819 B
C++
Executable File
44 lines
819 B
C++
Executable File
// MyXml.h
|
|
|
|
#ifndef ZIP7_INC_MY_XML_H
|
|
#define ZIP7_INC_MY_XML_H
|
|
|
|
#include "MyString.h"
|
|
|
|
struct CXmlProp
|
|
{
|
|
AString Name;
|
|
AString Value;
|
|
};
|
|
|
|
class CXmlItem
|
|
{
|
|
public:
|
|
AString Name;
|
|
bool IsTag;
|
|
CObjectVector<CXmlProp> Props;
|
|
CObjectVector<CXmlItem> SubItems;
|
|
|
|
const char * ParseItem(const char *s, int numAllowedLevels);
|
|
|
|
bool IsTagged(const char *tag) const throw();
|
|
int FindProp(const char *propName) const throw();
|
|
AString GetPropVal(const char *propName) const;
|
|
AString GetSubString() const;
|
|
const AString * GetSubStringPtr() const throw();
|
|
int FindSubTag(const char *tag) const throw();
|
|
AString GetSubStringForTag(const char *tag) const;
|
|
|
|
void AppendTo(AString &s) const;
|
|
};
|
|
|
|
struct CXml
|
|
{
|
|
CXmlItem Root;
|
|
|
|
bool Parse(const char *s);
|
|
// void AppendTo(AString &s) const;
|
|
};
|
|
|
|
#endif
|