]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/debsrcrecords.h
Merge branch 'debian/experimental' into feature/srv-records
[apt.git] / apt-pkg / deb / debsrcrecords.h
index 2a3fc86c9a27f3448c42b6c58180030549d9aa68..cd246d624b9332dedc73db62919f3c63fdf4a4b8 100644 (file)
 
 class pkgIndexFile;
 
-class debSrcRecordParser : public pkgSrcRecords::Parser
+class APT_HIDDEN debSrcRecordParser : public pkgSrcRecords::Parser
 {
    /** \brief dpointer placeholder (for later in case we need it) */
    void *d;
 
+ protected:
    FileFd Fd;
    pkgTagFile Tags;
    pkgTagSection Sect;
@@ -61,4 +62,10 @@ class debSrcRecordParser : public pkgSrcRecords::Parser
    virtual ~debSrcRecordParser();
 };
 
+class APT_HIDDEN debDscRecordParser : public debSrcRecordParser
+{
+ public:
+   debDscRecordParser(std::string const &DscFile, pkgIndexFile const *Index);
+};
+
 #endif