mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-07 03:30:44 +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();
|
||
|
}
|