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++

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