vdr-streamdev-client/main.cpp
2025-02-15 07:42:24 +01:00

15 lines
226 B
C++

#include <QApplication>
#include "player_gui.h"
// """ Version 0.11 """
//using namespace std;
int main(int argc, char* argv[]) {
QApplication app(argc, argv);
player_gui w;
w.show();
return app.exec();
}