vdr-streamdev-client/main.cpp

13 lines
184 B
C++
Raw Normal View History

2025-02-15 07:30:59 +01:00
#include <QApplication>
2025-02-15 07:31:32 +01:00
2025-02-15 07:32:07 +01:00
#include "player.h"
2025-02-15 07:31:32 +01:00
2025-02-15 07:32:07 +01:00
//using namespace std;
2025-02-15 07:30:59 +01:00
int main(int argc, char* argv[]) {
QApplication app(argc, argv);
2025-02-15 07:31:32 +01:00
Player player;
2025-02-15 07:30:59 +01:00
return app.exec();
}