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

#include "app.h"
App::App() {
}
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() {
}