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

17 lines
271 B
C++
Raw Normal View History

2023-11-23 08:19:32 +00:00
#include <QApplication>
2023-11-29 10:53:20 +00:00
#include <QSslSocket>
2023-12-06 11:00:27 +00:00
#include <QThread>
2023-11-29 10:53:20 +00:00
2023-12-06 11:00:27 +00:00
#include "stomp.h"
2023-12-22 11:44:28 +00:00
#include "app.h"
2023-11-23 08:19:32 +00:00
int main(int argc, char *argv[]) {
QApplication application(argc, argv);
2023-11-29 10:53:20 +00:00
2023-12-26 17:10:52 +00:00
Stomp st;
App app(&st);
st.subscribe(&app);
2023-11-29 10:53:20 +00:00
2023-11-23 08:19:32 +00:00
return application.exec();
}