mirror of
https://github.com/gtalent/sc9k.git
synced 2025-03-11 01:25:04 -05:00
11 lines
162 B
C++
11 lines
162 B
C++
|
#include "mainwindow.hpp"
|
||
|
|
||
|
#include <QApplication>
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
QApplication a(argc, argv);
|
||
|
MainWindow w;
|
||
|
w.show();
|
||
|
return a.exec();
|
||
|
}
|