This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
SDi-STOMP/main.cpp
2023-12-22 12:44:28 +01:00

16 lines
252 B
C++

#include <QApplication>
#include <QSslSocket>
#include <QThread>
#include "stompframe.h"
#include "stomp.h"
#include "app.h"
int main(int argc, char *argv[]) {
QApplication application(argc, argv);
App app;
return application.exec();
}