stuff-from-scratch/apps/sample-gui/gui-main.cpp

19 lines
354 B
C++
Raw Normal View History

2020-05-02 07:31:03 +00:00
#include <memory>
2022-11-11 11:48:42 +00:00
#include "MediaTool.h"
2020-05-02 07:31:03 +00:00
#include "MainApplication.h"
2020-05-09 14:29:45 +00:00
#include "CommandLineArgs.h"
2020-05-02 07:31:03 +00:00
2020-05-09 14:29:45 +00:00
int main(int argc, char *argv[])
2020-05-02 07:31:03 +00:00
{
2022-10-03 07:12:38 +00:00
auto args = CommandLineArgs::Create();
args->process(argc, argv);
args->recordLaunchPath();
2020-05-09 14:29:45 +00:00
// Start the gui app
2022-11-11 11:48:42 +00:00
auto gui_app = GuiApplication(std::move(args));
gui_app.run();
2020-05-02 07:31:03 +00:00
return 0;
2020-05-02 07:31:03 +00:00
}