Output to csv, started work on OFD module

This commit is contained in:
2024-08-30 05:03:32 +03:00
parent 64e40071b2
commit d9fca88af3
21 changed files with 606 additions and 163 deletions

View File

@@ -22,7 +22,7 @@ void MainWindow::setupStoresList() {
std::vector<std::string> modules_names = parser.search_modules();
for (std::string name : modules_names) {
Module m(name);
StoreModule m(name);
std::wstring module_name = m.get_name();
QString s = QString::fromStdWString(module_name);
@@ -66,6 +66,7 @@ void MainWindow::on_parseButton_clicked() {
}
OutputDialog *d = new OutputDialog(this, check);
d->show();
d->exec();
}