using namespace std;
-class pkgCdromStatus
+class pkgCdromStatus /*{{{*/
{
protected:
int totalSteps;
// Progress indicator for the Index rewriter
virtual OpProgress* GetOpProgress() {return NULL; };
};
-
-class pkgCdrom
+ /*}}}*/
+class pkgCdrom /*{{{*/
{
protected:
enum {
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
bool Dlopen();
vector<CdromDevice> Scan();
};
-
-
+ /*}}}*/
#endif