Line 546... |
Line 546... |
546 |
std::string mFile; //!< The name of a file containing the XML code to parse
|
546 |
std::string mFile; //!< The name of a file containing the XML code to parse
|
547 |
std::vector<_ELEMENT_t> mElements; //!< The list of elemets in the order they appeared
|
547 |
std::vector<_ELEMENT_t> mElements; //!< The list of elemets in the order they appeared
|
548 |
std::vector<_ELEMENT_t>::iterator mLastIter{mElements.end()}; //!< The pointer to the last iterator
|
548 |
std::vector<_ELEMENT_t>::iterator mLastIter{mElements.end()}; //!< The pointer to the last iterator
|
549 |
std::string mEncoding{"UTF-8"}; //!< Encoding of the XML file. UTF-8 is default encoding.
|
549 |
std::string mEncoding{"UTF-8"}; //!< Encoding of the XML file. UTF-8 is default encoding.
|
550 |
TENCODING_t mSetEncoding{ENC_UTF8}; //!< Encoding of the XML file. UTF-8 is default encoding.
|
550 |
TENCODING_t mSetEncoding{ENC_UTF8}; //!< Encoding of the XML file. UTF-8 is default encoding.
|
551 |
int mLastDepth{0}; //!< The depth of the last found element.
|
551 |
// int mLastDepth{0}; //!< The depth of the last found element.
|
552 |
// Variables used for the static methods
|
552 |
// Variables used for the static methods
|
553 |
static int mDepth;
|
553 |
static int mDepth;
|
554 |
static std::string mContent;
|
554 |
static std::string mContent;
|
555 |
static std::string mLastName;
|
555 |
static std::string mLastName;
|
556 |
static std::vector<_ATTRIBUTE_t> mAttributes;
|
556 |
static std::vector<_ATTRIBUTE_t> mAttributes;
|