Segmentation fault

This commit is contained in:
2023-12-26 18:10:52 +01:00
parent ac7411aa58
commit 2418aafa97
5 changed files with 101 additions and 20 deletions

View File

@@ -2,14 +2,15 @@
#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;
Stomp st;
App app(&st);
st.subscribe(&app);
return application.exec();
}