diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2014-02-12 15:56:02 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit2@gerrit> | 2014-02-12 15:56:02 +0100 |
commit | 374cd713d44dc62878f34f36d36948689f53e85a (patch) | |
tree | 99279d73137c462f9506106020cab68c89d7e688 /twrpTar.hpp | |
parent | Fix ext4 wiping when no SELinux contexts are defined (diff) | |
parent | Move DataManager functions out of twrpTar.cpp (diff) | |
download | android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.tar android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.tar.gz android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.tar.bz2 android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.tar.lz android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.tar.xz android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.tar.zst android_bootable_recovery-374cd713d44dc62878f34f36d36948689f53e85a.zip |
Diffstat (limited to '')
-rw-r--r-- | twrpTar.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/twrpTar.hpp b/twrpTar.hpp index 17f69594d..02d4b8004 100644 --- a/twrpTar.hpp +++ b/twrpTar.hpp @@ -51,6 +51,8 @@ public: void setfn(string fn); void setdir(string dir); void setsize(unsigned long long backup_size); + void setpassword(string pass); + unsigned long long uncompressedSize(); public: @@ -89,6 +91,7 @@ private: string tardir; string tarfn; string basefn; + string password; vector <string> tarexclude; |