Files
RRJServer/testDB/testDBpgSQL/main.cpp
2024-11-02 13:43:57 +03:00

20 lines
272 B
C++

#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
try
{
MainWindow w;
w.show();
return a.exec();
}
catch( const std::exception& e )
{
return 1;
}
}