summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/metric/main.cpp
blob: 8fe7bf6fc446c8eaf863dc3ae0355512a195b3c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <ntqapplication.h>
#include "metric.h"

int main( int argc, char ** argv )
{
    TQApplication a( argc, argv );
    ConversionForm *w = new ConversionForm;
    w->show();
    a.setMainWidget( w );
    a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) );
    return a.exec();
}