This commit is contained in:
Igor Pavlov
2017-04-30 00:00:00 +00:00
committed by Kornel
parent 603abd5528
commit 2efa10565a
442 changed files with 15479 additions and 8525 deletions

View File

@@ -21,13 +21,13 @@ public:
const char * ParseItem(const char *s, int numAllowedLevels);
bool IsTagged(const AString &tag) const throw();
int FindProp(const AString &propName) const throw();
AString GetPropVal(const AString &propName) const;
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 AString &tag) const throw();
AString GetSubStringForTag(const AString &tag) const;
int FindSubTag(const char *tag) const throw();
AString GetSubStringForTag(const char *tag) const;
void AppendTo(AString &s) const;
};