]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/pkgrecords.h
* methods/https.cc:
[apt.git] / apt-pkg / pkgrecords.h
index f3bf7b6a14bda179a9dff645c0f8a7ad6264fe73..c2c98188a7e12fce76b512c767e56f1c9b256c21 100644 (file)
@@ -22,7 +22,7 @@
 #include <apt-pkg/fileutl.h>
 #include <vector>
 
-class pkgRecords
+class pkgRecords                                                       /*{{{*/
 {
    public:
    class Parser;
@@ -42,8 +42,8 @@ class pkgRecords
    pkgRecords(pkgCache &Cache);
    ~pkgRecords();
 };
-
-class pkgRecords::Parser
+                                                                       /*}}}*/
+class pkgRecords::Parser                                               /*{{{*/
 {
    protected:
    
@@ -66,11 +66,12 @@ class pkgRecords::Parser
    virtual string ShortDesc() {return string();};
    virtual string LongDesc() {return string();};
    virtual string Name() {return string();};
+   virtual string Homepage() {return string();}
    
    // The record in binary form
    virtual void GetRec(const char *&Start,const char *&Stop) {Start = Stop = 0;};
    
    virtual ~Parser() {};
 };
-
+                                                                       /*}}}*/
 #endif