Newer
Older
Import / projects / LGN-IP3870 / qtpyui / mediaplayer / mplay / main.cpp
@John Ryland John Ryland on 22 Dec 2020 220 bytes import NUC files
#include <QApplication>
#include <mediaplayer.h>


int main(int argc, char *argv[])
{
    QApplication app(argc,argv);

    MediaPlayer mplay(0);
    mplay.resize(480, 272);
    mplay.show();

    return app.exec();
}