ATBTariffCalculator/Utilities/main.cpp

16 lines
186 B
C++
Raw Permalink Normal View History

2024-03-01 13:38:12 +01:00
#include <QtGlobal>
2024-03-04 16:23:10 +01:00
#include <QDebug>
#include "tariff_editor.h"
2024-03-01 13:38:12 +01:00
int main(int argc, char **argv) {
Q_UNUSED(argc);
Q_UNUSED(argv);
2024-03-04 16:23:10 +01:00
TariffEditor editor;
2024-03-01 13:38:12 +01:00
return 0;
}