mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
12 lines
164 B
C++
12 lines
164 B
C++
#include <QApplication>
|
|
#include "dialog.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
Dialog w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|