14 typedef enum {START_TAG=1, END_TAG, EMPTY_TAG, CONTENT, DECLARATION} StringTokenType;
18 StringTokenType tokenType;
19 std::string tokenString;
30 std::vector<TokenStruct> tokenizedInputVector;
44 bool tokenizeInputString(
const std::string &inputString);
59 bool parseTokenizedInput();
69 std::vector<TokenStruct> returnTokenizedInput()
const;
76 bool containsElementName(
const std::string &inputString)
const;
84 int frequencyElementName(
const std::string &inputString)
const;
Definition: XMLParser.hpp:17
Definition: XMLParser.hpp:22