X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/265e9fb4152fa410aacd0fd336221f9db1bf4eb1..a26716da51b33c5014fba460537db707a9ea84f2:/Bundle.h?ds=sidebyside 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;