예제 #1
0
파일: main.cpp 프로젝트: 151706061/QtAV
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    PlayerWindow player;
    player.show();
    player.resize(800, 600);
    return a.exec();
}
예제 #2
0
파일: main.cpp 프로젝트: 151706061/QtAV
int main(int argc, char *argv[])
{
    QtAV::Widgets::registerRenderers();
    QApplication a(argc, argv);
    PlayerWindow player;
    player.show();
    player.resize(800, 600);
    return a.exec();
}