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.
tdebindings/kjsembed/docs/embedding/qtembed/main.cpp

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