]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/hashes.h
ignore for _apt inaccessible TMPDIR in pkgAcqChangelog
[apt.git] / apt-pkg / contrib / hashes.h
index ac13c8acef3c2e3022fd4ec6687abead88c7998f..0e6ff9ef1b7508a6742d31cf516b8a5be4e809ca 100644 (file)
@@ -87,6 +87,22 @@ class HashStringList
     */
    HashString const * find(char const * const type) const;
    HashString const * find(std::string const &type) const { return find(type.c_str()); }
+
+   /** finds the filesize hash and returns it as number
+    *
+    * @return beware: if the size isn't known we return \b 0 here,
+    * just like we would do for an empty file. If that is a problem
+    * for you have to get the size manually out of the list.
+    */
+   unsigned long long FileSize() const;
+
+   /** sets the filesize hash
+    *
+    * @param Size of the file
+    * @return @see #push_back
+    */
+   bool FileSize(unsigned long long const Size);
+
    /** check if the given hash type is supported
     *
     * @param type to check
@@ -166,7 +182,7 @@ class HashStringList
 class PrivateHashes;
 class Hashes
 {
-   PrivateHashes *d;
+   PrivateHashes * const d;
 
    public:
    /* those will disappear in the future as it is hard to add new ones this way.