2021-08-14 03:32:43 +00:00
|
|
|
#include "dbunit.h"
|
2021-08-15 11:09:08 +00:00
|
|
|
#include "labelsmanagement.h"
|
2021-08-14 03:32:43 +00:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
2021-08-15 11:09:08 +00:00
|
|
|
// MainWindow w;
|
|
|
|
// w.show();
|
2021-08-14 03:32:43 +00:00
|
|
|
|
2021-08-15 11:09:08 +00:00
|
|
|
DBUnit tool;
|
|
|
|
LabelsManagement m(&tool);
|
|
|
|
m.show();
|
2021-08-14 03:32:43 +00:00
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|