This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
Neuro/gui/NeuroUI/main.cpp

12 lines
166 B
C++

#include "neuroui.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
NeuroUI w;
w.show();
return a.exec();
}