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

20 lines
413 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 14:22:31 +00:00
auto app = MediaTool(std::move(args));
app.setUiInterfaceBackend(UiInterfaceFactory::Backend::X11_RASTER);
app.run();
2020-05-02 07:31:03 +00:00
return 0;
2020-05-02 07:31:03 +00:00
}