]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/deblistparser.h
support regular expressions in 'apt search'
[apt.git] / apt-pkg / deb / deblistparser.h
index baace79fe1f632f5bb25f565afba015a3e4061fb..3b6963211649d503454bab13a1b6c6e1a5f3f2de 100644 (file)
@@ -106,4 +106,15 @@ class debListParser : public pkgCacheGenerator::ListParser
    APT_HIDDEN unsigned char ParseMultiArch(bool const showErrors);
 };
 
+class debTranslationsParser : public debListParser
+{
+ public:
+   // a translation can never be a real package
+   virtual std::string Architecture() { return ""; }
+   virtual std::string Version() { return ""; }
+
+   debTranslationsParser(FileFd *File, std::string const &Arch = "")
+      : debListParser(File, Arch) {};
+};
+
 #endif