X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/762b8e593a088fc9d2a7a86c0e55ccdd44aaade6..1eb15b505ba1d7ea5a18363c4b7b137f2e9f6d01:/XMLNode.h?ds=inline diff --git a/XMLNode.h b/XMLNode.h index a9bea43..dc92fa7 100644 --- a/XMLNode.h +++ b/XMLNode.h @@ -124,6 +124,8 @@ public: void removeWhitespace(bool stripAll=true, const char** cDataTags=NULL); + void setUTF8(bool val) { mUTF8 = val; } + status_t parseValues(const sp& assets, ResourceTable* table); status_t assignResourceIds(const sp& assets, @@ -189,6 +191,9 @@ private: String8 mFilename; int32_t mStartLineNumber; int32_t mEndLineNumber; + + // Encode compiled XML with UTF-8 StringPools? + bool mUTF8; }; #endif