Need a central piece to manage the catalogue data per database to prevent loading this multiple times. MasterController is now also used to enable reopening the connection manager from a query window after the connection manager has been closed.
36 lines
851 B
C++
36 lines
851 B
C++
#include "MasterController.h"
|
|
#include <QApplication>
|
|
#include <winsock2.h>
|
|
#include <memory>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
|
|
/* Use the MAKEWORD(lowbyte, highbyte) macro declared in Windef.h */
|
|
WORD wVersionRequested = MAKEWORD(2, 2);
|
|
WSADATA wsaData;
|
|
int err = WSAStartup(wVersionRequested, &wsaData);
|
|
if (err != 0) {
|
|
/* Tell the user that we could not find a usable */
|
|
/* Winsock DLL. */
|
|
printf("WSAStartup failed with error: %d\n", err);
|
|
return 1;
|
|
}
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
QCoreApplication::setOrganizationName("pglab");
|
|
QCoreApplication::setOrganizationDomain("eelkeklein.nl");
|
|
QCoreApplication::setApplicationName("pglab");
|
|
|
|
auto master_controller = std::make_unique<MasterController>();
|
|
master_controller->init();
|
|
|
|
|
|
int result = a.exec();
|
|
|
|
WSACleanup();
|
|
|
|
return result;
|
|
}
|
|
|