12 lines
218 B
C++
12 lines
218 B
C++
|
#include <QtCore>
|
||
|
#include <QApplication>
|
||
|
|
||
|
#include "ImmuNoattri.hpp"
|
||
|
|
||
|
int main(int argc, char** argv) {
|
||
|
// Q_INIT_RESOURCE(application);
|
||
|
QApplication a(argc, argv);
|
||
|
MainWindow w;
|
||
|
w.show();
|
||
|
return a.exec();
|
||
|
}
|