/** * @file app.h * @brief app logic * @author hendrik schutter * @date 01.05.2020 */ #ifndef APP_H_ #define APP_H_ #include "refurbishingHddTool.h" #include "drive.h" #include "smart.h" class App { protected: public: App(void); void app_logic(); private: list listDrives; //stores all drive data void searchDrives(list *listDrives); void printDrives(list *listDrives); void filterIgnoredDrives(list *listDrives); void addSMARTData(list *listDrives); }; #endif // APP_H_