blob: 78808aacbef9ddc2a0f8c31be062f648dc1d37eb (
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 )
{
TTQApplication app( argc, argv );
POSViewImp *view = new POSViewImp;
app.setMainWidget(view);
view->show();
return app.exec();
}
|