blob: 44da5de8e87fd8bb91b1ed6fe690fc6aef4f498b [file] [log] [blame]
/**
* @file oprof_start_main.cpp
* main routine for GUI start
*
* @remark Copyright 2002 OProfile authors
* @remark Read the file COPYING
*
* @author Philippe Elie
* @author John Levon
*/
#include <qapplication.h>
#include "oprof_start.h"
int main(int argc, char* argv[])
{
QApplication a(argc, argv);
oprof_start* dlg = new oprof_start();
a.setMainWidget(dlg);
dlg->show();
return a.exec();
}