added: search drive, filter out ingored drives and prtint drive

This commit is contained in:
2020-05-01 18:31:02 +02:00
parent 20cfc44b51
commit 3547369a49
20 changed files with 361 additions and 218 deletions

25
src/main.cpp Normal file
View File

@ -0,0 +1,25 @@
/**
* @file main.cpp
* @brief app entry point
* @author hendrik schutter
* @date 01.05.2020
*/
#include "refurbishingHddTool.h"
#include "app.h"
/**
* \brief app entry point
* \param void
* \return Status-Code
*/
int main(void)
{
cout << "refurbishingHddTool" << endl;
App* app = new App();
app->app_logic();
return EXIT_SUCCESS;
}