BookShelf/main.cpp

15 lines
213 B
C++
Raw Normal View History

#include "dbunit.h"
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
2021-08-14 07:50:39 +00:00
MainWindow w;
w.show();
// DBUnit t;
return a.exec();
}