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/app.cpp

30 lines
353 B
C++
Raw Normal View History

2023-11-29 10:53:20 +00:00
#include "app.h"
App::App() {
}
2023-11-30 08:53:53 +00:00
void App::connectConfirmation(bool success, int version) {
}
void App::sendConfirmation(bool success) {
}
void App::subscribeConfirmation(bool success) {
}
void App::receiveIndication(int id, QString destination, QString body) {
}
void App::disconnectConfirmation() {
}
void App::disconnectIndication() {
}