implements oberver pattern

This commit is contained in:
2023-11-30 09:53:53 +01:00
parent 0907d3373c
commit 5388d154da
7 changed files with 164 additions and 21 deletions

24
app.cpp
View File

@@ -3,3 +3,27 @@
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() {
}