qt-tracing/ui/src/main.cxx
2025-11-15 18:48:22 +03:00

13 lines
182 B
C++

#include "main_window.hxx"
#include <QApplication>
int main(int argc, char* argv[]) {
QApplication app(argc, argv);
auto w = new PhotonLight;
w->show();
return app.exec();
}