summaryrefslogtreecommitdiffstats
path: root/common/commands.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/commands.h')
-rw-r--r--common/commands.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/commands.h b/common/commands.h
index 6d5d39b..1548eac 100644
--- a/common/commands.h
+++ b/common/commands.h
@@ -24,7 +24,7 @@
24#include <flatbuffers/flatbuffers.h> 24#include <flatbuffers/flatbuffers.h>
25#include <QByteArray> 25#include <QByteArray>
26 26
27class QIODevice; 27class QLocalSocket;
28 28
29namespace Sink { 29namespace Sink {
30 30
@@ -55,9 +55,9 @@ enum CommandIds
55QByteArray name(int commandId); 55QByteArray name(int commandId);
56 56
57int SINK_EXPORT headerSize(); 57int SINK_EXPORT headerSize();
58void SINK_EXPORT write(QIODevice *device, int messageId, int commandId); 58void SINK_EXPORT write(QLocalSocket *device, int messageId, int commandId);
59void SINK_EXPORT write(QIODevice *device, int messageId, int commandId, const char *buffer, uint size); 59void SINK_EXPORT write(QLocalSocket *device, int messageId, int commandId, const char *buffer, uint size);
60void SINK_EXPORT write(QIODevice *device, int messageId, int commandId, flatbuffers::FlatBufferBuilder &fbb); 60void SINK_EXPORT write(QLocalSocket *device, int messageId, int commandId, flatbuffers::FlatBufferBuilder &fbb);
61} 61}
62 62
63} // namespace Sink 63} // namespace Sink