aboutsummaryrefslogtreecommitdiffstats
path: root/mock-server/MockServer.h
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-03-16 16:48:34 +0100
committerThomas Vanbesien <tvanbesi@proton.me>2026-03-16 16:48:34 +0100
commitf2251311a8523b6c24839ccd1e6834ef065c679f (patch)
tree56d89508f564281c6a8ae09f3e7c05d214c87170 /mock-server/MockServer.h
parentfa095de6cc8ec5a5b5c14091f2b3179ad7071876 (diff)
downloadQtXpl2-f2251311a8523b6c24839ccd1e6834ef065c679f.tar.gz
QtXpl2-f2251311a8523b6c24839ccd1e6834ef065c679f.zip
Imaging (m/n) commands: start/stop, masks, image count, n reply
Diffstat (limited to 'mock-server/MockServer.h')
-rw-r--r--mock-server/MockServer.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/mock-server/MockServer.h b/mock-server/MockServer.h
index 3086057..74b2731 100644
--- a/mock-server/MockServer.h
+++ b/mock-server/MockServer.h
@@ -69,6 +69,14 @@ private:
void handleCfPhSetter (QTcpSocket *client, const QByteArray &params);
void handleCfJcGetter (QTcpSocket *client, const QByteArray &params);
void handleCfPhGetter (QTcpSocket *client, const QByteArray &params);
+ /* Imaging command handlers */
+ void handleImagingStart (QTcpSocket *client, const QByteArray &params);
+ void handleImagingStop (QTcpSocket *client);
+ void handleImagingMaskStart (QTcpSocket *client, const QByteArray &cmd,
+ const QByteArray &params);
+ void handleImagingMaskEnd (QTcpSocket *client, const QByteArray &cmd,
+ const QByteArray &params);
+ void handleImageCount (QTcpSocket *client);
Port m_command;
Port m_imaging;