summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/tools/designer/examples/vcr/main.cpp
blob: 71f04f85673bfd5cad7a9af0a016bfb626cd3b40 (plain)
1
2
3
4
5
6
7
8
9
10
#include <tqapplication.h>
#include "vcr.h"

int main( int argc, char ** argv )
{
    TQApplication app( argc, argv );
    Vcr *vcr = new Vcr;
    vcr->show();
    return app.exec();
}