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

25 lines
535 B
C++
Raw Normal View History

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
{
auto args = CommandLineArgs::CreateUnique();
args->Process(argc, argv);
args->RecordLaunchPath();
2020-05-09 14:29:45 +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
// Start the gui app
auto gui_app = GuiApplication();
gui_app.SetMainApplication(main_app);
gui_app.Run();
2020-05-02 07:31:03 +00:00
main_app->ShutDown();
return 0;
2020-05-02 07:31:03 +00:00
}