]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/deb/debsrcrecords.h
mark internal interfaces as hidden
[apt.git] / apt-pkg / deb / debsrcrecords.h
index b65d1480b14d7a7e265d550627ec04e8eb104acf..1a09f6546cf77ceae6d45e114f3aeda373a0ecef 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;
@@ -60,4 +61,10 @@ class debSrcRecordParser : public pkgSrcRecords::Parser
    virtual ~debSrcRecordParser();
 };
 
+class APT_HIDDEN debDscRecordParser : public debSrcRecordParser
+{
+ public:
+   debDscRecordParser(std::string const &DscFile, pkgIndexFile const *Index);
+};
+
 #endif