Newer
Older
invertedlogic / LGN-IP3870 / qtpyui / mediaplayer / mplay / main.cpp
@John Ryland John Ryland on 19 Jan 2009 220 bytes LG project 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();
}