reHDD/src/main.cpp

22 lines
358 B
C++
Raw Normal View History

/**
* @file main.cpp
* @brief app entry point
* @author hendrik schutter
* @date 01.05.2020
*/
2020-05-02 22:06:47 +02:00
#include "../include/reHDD.h"
/**
* \brief app entry point
* \param void
* \return Status-Code
*/
int main(void)
{
2020-08-04 17:18:32 +02:00
// cout << "refurbishingHddTool" << endl;
2020-05-02 22:06:47 +02:00
reHDD* app = new reHDD();
app->app_logic();
return EXIT_SUCCESS;
}