-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
34 lines (29 loc) · 857 Bytes
/
main.cpp
File metadata and controls
34 lines (29 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include "mainwindow.h"
#include "backend.h"
#include <QApplication>
#include <QLocale>
#include <QMetaType>
#include <QTranslator>
#include "networkvisualizer.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
qRegisterMetaType<NeuralLayer>("NeuralLayer");
QTranslator translator;
const QStringList uiLanguages = QLocale::system().uiLanguages();
for (const QString &locale : uiLanguages) {
const QString baseName = "CodeWings_" + QLocale(locale).name();
if (translator.load(":/i18n/" + baseName)) {
a.installTranslator(&translator);
break;
}
}
MainWindow w;
MainWindow::setInstance(&w);
w.show();
return a.exec();
/*
visualizer->createblockNetwork(layers);
visualizer->show();*/
return a.exec();
}