]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/metaindex.h
Optimize VersionHash() to not need temporary copy of input
[apt.git] / apt-pkg / metaindex.h
index 94aec2d1f0d79186b79bf4a45c7134b717778f76..3a624e86d139c1220834bfa06a5d1fbcb7ce2f04 100644 (file)
@@ -35,7 +35,7 @@ public:
       HashStringList Hashes;
       unsigned long long Size;
 
-      APT_DEPRECATED HashString Hash;
+      APT_DEPRECATED_MSG("Use the HashStringList member Hashes instead of a hardcoded HashString") HashString Hash;
    };
    APT_IGNORE_DEPRECATED_POP
 
@@ -107,6 +107,10 @@ public:
    metaIndex(std::string const &URI, std::string const &Dist,
              char const * const Type);
    virtual ~metaIndex();
+
+   // FIXME: make virtual on next abi break
+   bool IsArchitectureSupported(std::string const &arch) const;
+   bool IsArchitectureAllSupportedFor(IndexTarget const &target) const;
 };
 
 #endif