blob: b2d7d3d103a12cf2877cd8a1d7557e4b6f8f52c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//
// Author: Ian Reinhart Geiser <geiseri@kde.org>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include <qapplication.h>
#include "posviewimp.h"
int main ( int argc, char ** argv )
{
QApplication app( argc, argv );
POSViewImp *view = new POSViewImp;
app.setMainWidget(view);
view->show();
return app.exec();
}
|