12 lines
169 B
C++
12 lines
169 B
C++
#include "main_window.hh"
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
QApplication app(argc, argv);
|
|
MainWindow mw;
|
|
mw.show();
|
|
return app.exec();
|
|
}
|