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

16 lines
252 B
C++
Raw Normal View History

2023-11-23 08:19:32 +00:00
#include <QApplication>
2023-11-29 11:53:20 +01:00
#include <QSslSocket>
2023-12-06 12:00:27 +01:00
#include <QThread>
2023-11-29 11:53:20 +01:00
#include "stompframe.h"
2023-12-06 12:00:27 +01:00
#include "stomp.h"
2023-12-22 12:44:28 +01: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 11:53:20 +01:00
2023-12-22 12:44:28 +01:00
App app;
2023-11-29 11:53:20 +01:00
2023-11-23 08:19:32 +00:00
return application.exec();
}