You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
369 B
19 lines
369 B
//
|
|
// 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();
|
|
}
|