forked from localhorst/reHDD
changed device model from struct to class
This commit is contained in:
@ -21,11 +21,11 @@ public:
|
||||
|
||||
private:
|
||||
|
||||
list <struct drive> listDrives; //stores all drive data
|
||||
list <Drive> listDrives; //stores all drive data
|
||||
|
||||
void searchDrives(list <struct drive> *listDrives);
|
||||
void printDrives(list <struct drive> *listDrives);
|
||||
void filterIgnoredDrives(list <struct drive> *listDrives);
|
||||
void searchDrives(list <Drive> *listDrives);
|
||||
void printDrives(list <Drive> *listDrives);
|
||||
void filterIgnoredDrives(list <Drive> *listDrives);
|
||||
};
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user