X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/3b8c05ce0707be71abb209f7dbae564088426d87..7ae4e725c7a3a2fd92f3389184c93e87778f9477:/Bundle.h diff --git a/Bundle.h b/Bundle.h index be08291..fde3bd6 100644 --- a/Bundle.h +++ b/Bundle.h @@ -61,7 +61,8 @@ public: mMinSdkVersion(NULL), mTargetSdkVersion(NULL), mMaxSdkVersion(NULL), mVersionCode(NULL), mVersionName(NULL), mCustomPackage(NULL), mExtraPackages(NULL), mMaxResVersion(NULL), mDebugMode(false), mNonConstantId(false), mProduct(NULL), - mUseCrunchCache(false), mErrorOnFailedInsert(false), mArgc(0), mArgv(NULL) + mUseCrunchCache(false), mErrorOnFailedInsert(false), mOutputTextSymbols(NULL), + mArgc(0), mArgv(NULL) {} ~Bundle(void) {} @@ -173,6 +174,8 @@ public: void setProduct(const char * val) { mProduct = val; } void setUseCrunchCache(bool val) { mUseCrunchCache = val; } bool getUseCrunchCache() const { return mUseCrunchCache; } + const char* getOutputTextSymbols() const { return mOutputTextSymbols; } + void setOutputTextSymbols(const char* val) { mOutputTextSymbols = val; } /* * Set and get the file specification. @@ -279,6 +282,7 @@ private: const char* mProduct; bool mUseCrunchCache; bool mErrorOnFailedInsert; + const char* mOutputTextSymbols; /* file specification */ int mArgc;