mirror of
https://github.com/gtalent/sc9k.git
synced 2025-01-23 10:53:37 -06: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();
|
||
|
}
|