blob: fbf8541bfd07cee8899cfe2a1bde6e629e41dc5c (
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 <tqapplication.h>
#include "posviewimp.h"
int main ( int argc, char ** argv )
{
	TQApplication app( argc, argv );
    POSViewImp *view = new POSViewImp;
    app.setMainWidget(view);
    view->show();
	return app.exec();
}
 |