]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/cdrom.h
Refactor the cache iterators by using a common base class
[apt.git] / apt-pkg / cdrom.h
index 13e7203f41c7016e67cebd3cc97e76b4635ff33f..14ca1d8104dc163136e02a68426fca9a0283fdc6 100644 (file)
@@ -8,7 +8,7 @@
 
 using namespace std;
 
-class pkgCdromStatus
+class pkgCdromStatus                                                   /*{{{*/
 {
  protected:
    int totalSteps;
@@ -29,8 +29,8 @@ class pkgCdromStatus
    // Progress indicator for the Index rewriter
    virtual OpProgress* GetOpProgress() {return NULL; };
 };
-
-class pkgCdrom 
+                                                                       /*}}}*/
+class pkgCdrom                                                         /*{{{*/
 {
  protected:
    enum {
@@ -65,17 +65,18 @@ class pkgCdrom
    bool Ident(string &ident, pkgCdromStatus *log);
    bool Add(pkgCdromStatus *log);
 };
+                                                                       /*}}}*/
 
 
 // class that uses libudev to find cdrom devices dynamically
-struct CdromDevice
+struct CdromDevice                                                     /*{{{*/
 {
    string DeviceName;
    bool Mounted;
    string MountPath;
 };
-
-class pkgUdevCdromDevices
+                                                                       /*}}}*/
+class pkgUdevCdromDevices                                              /*{{{*/
 {
  protected:
    // libudev dlopen stucture
@@ -101,7 +102,6 @@ class pkgUdevCdromDevices
    bool Dlopen();
    vector<CdromDevice> Scan();
 };
-
-
+                                                                       /*}}}*/
 
 #endif