00001 00012 #include <qapplication.h> 00013 00014 #include "oprof_start.h" 00015 00016 int main(int argc, char* argv[]) 00017 { 00018 QApplication a(argc, argv); 00019 00020 oprof_start* dlg = new oprof_start(); 00021 00022 a.setMainWidget(dlg); 00023 00024 dlg->show(); 00025 00026 return a.exec(); 00027 }