main.cpp 238 字节
Newer Older
1
#include "specwidget.h"
M
manjaro 已提交
2 3 4
#ifdef __GNUC__
#include <unistd.h>
#endif
M
manjaro 已提交
5 6 7 8
#include <QApplication>

int main(int argc, char *argv[])
{
M
manjaro 已提交
9 10 11
#ifdef __GNUC__
	nice(0);
#endif
M
manjaro 已提交
12 13 14 15 16
	QApplication a(argc, argv);
	specWidget w;
	w.show();
	return a.exec();
}