changed device model from struct to class

This commit is contained in:
2020-05-01 22:18:01 +02:00
parent 3547369a49
commit 9482030fc2
6 changed files with 99 additions and 48 deletions

View File

@ -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);
};