TODO changes

This commit is contained in:
2024-08-30 22:12:14 +03:00
parent d9fca88af3
commit 2a726a96b7
8 changed files with 35 additions and 36 deletions

View File

@@ -2,7 +2,6 @@
#include "ofd/ofd.h"
#include "utils/utils.h"
#include <iostream>
#include <QApplication>
int main(int argc, char *argv[]) {
@@ -10,12 +9,6 @@ int main(int argc, char *argv[]) {
MainWindow w;
w.show();
OFD ofd;
std::vector<std::string> ofds = ofd.search_ofds();
for (OFDModule o : ofds) {
std::cout << to_utf8(o.get_name()) << ": " << to_utf8(o.get_url()) << std::endl;
}
return a.exec();
}