2020-05-02 07:31:03 +00:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "GuiApplication.h"
|
|
|
|
#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
|
|
|
|
2020-06-20 15:34:10 +00:00
|
|
|
// Start the main app
|
|
|
|
auto main_app = MainApplication::Create();
|
|
|
|
main_app->Initialize(std::move(args));
|
2020-05-02 07:31:03 +00:00
|
|
|
|
2020-06-20 15:34:10 +00:00
|
|
|
// Start the gui app
|
|
|
|
auto gui_app = GuiApplication();
|
|
|
|
gui_app.SetMainApplication(main_app);
|
|
|
|
gui_app.Run();
|
2020-05-02 07:31:03 +00:00
|
|
|
|
2020-06-20 15:34:10 +00:00
|
|
|
main_app->ShutDown();
|
|
|
|
return 0;
|
2020-05-02 07:31:03 +00:00
|
|
|
}
|