16 lines
186 B
C++
16 lines
186 B
C++
|
|
#include <QtGlobal>
|
|
#include <QDebug>
|
|
|
|
#include "tariff_editor.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
Q_UNUSED(argc);
|
|
Q_UNUSED(argv);
|
|
|
|
TariffEditor editor;
|
|
|
|
|
|
return 0;
|
|
}
|