]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/debindexfile.h
merge with lp:~mvo/apt/debian-sid and update all pot's and po's
[apt.git] / apt-pkg / deb / debindexfile.h
index 2bc9635677fa64807cbf125be753173df5534f13..c0e8d7d8eed52d909b5fbf414c7093fbb984a516 100644 (file)
@@ -72,6 +72,37 @@ class debPackagesIndex : public pkgIndexFile
    debPackagesIndex(string URI,string Dist,string Section,bool Trusted);
 };
 
+class debTranslationsIndex : public pkgIndexFile
+{
+   string URI;
+   string Dist;
+   string Section;
+   const char * const Language;
+   
+   string Info(const char *Type) const;
+   string IndexFile(const char *Type) const;
+   string IndexURI(const char *Type) const;
+
+   inline string TranslationFile() const {return string("Translation-").append(Language);};
+
+   public:
+   
+   virtual const Type *GetType() const;
+
+   // Interface for acquire
+   virtual string Describe(bool Short) const;   
+   virtual bool GetIndexes(pkgAcquire *Owner) const;
+   
+   // Interface for the Cache Generator
+   virtual bool Exists() const;
+   virtual bool HasPackages() const;
+   virtual unsigned long Size() const;
+   virtual bool Merge(pkgCacheGenerator &Gen,OpProgress &Prog) const;
+   virtual pkgCache::PkgFileIterator FindInCache(pkgCache &Cache) const;
+
+   debTranslationsIndex(string URI,string Dist,string Section, char const * const Language);
+};
+
 class debSourcesIndex : public pkgIndexFile
 {
    string URI;