BookShelf/main.cpp

19 lines
339 B
C++

#include "countrymanagement.h"
#include "dbunit.h"
#include "labelsmanagement.h"
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
// MainWindow w;
// w.show();
DBUnit tool;
ViewComp::CountryManagement m(&tool);
m.show();
return a.exec();
}