diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-20 19:07:07 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2016-01-20 19:07:07 +0100 |
commit | bdb01c2c068df326f5a8328ed1492ab1bea388c5 (patch) | |
tree | 25c2ee1b29bc481b6914c244ed9ca194b1415d16 /common/commands.h | |
parent | 17e7ee40c9185c0505883853345fd6024c675b1a (diff) | |
download | sink-bdb01c2c068df326f5a8328ed1492ab1bea388c5.tar.gz sink-bdb01c2c068df326f5a8328ed1492ab1bea388c5.zip |
Renamed Akonadi2 to Sink
(except for documentation).
Diffstat (limited to 'common/commands.h')
-rw-r--r-- | common/commands.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/common/commands.h b/common/commands.h index 33d5cd7..19c827e 100644 --- a/common/commands.h +++ b/common/commands.h | |||
@@ -20,13 +20,13 @@ | |||
20 | 20 | ||
21 | #pragma once | 21 | #pragma once |
22 | 22 | ||
23 | #include <akonadi2common_export.h> | 23 | #include <sinkcommon_export.h> |
24 | #include <flatbuffers/flatbuffers.h> | 24 | #include <flatbuffers/flatbuffers.h> |
25 | #include <QByteArray> | 25 | #include <QByteArray> |
26 | 26 | ||
27 | class QIODevice; | 27 | class QIODevice; |
28 | 28 | ||
29 | namespace Akonadi2 | 29 | namespace Sink |
30 | { | 30 | { |
31 | 31 | ||
32 | namespace Commands | 32 | namespace Commands |
@@ -54,11 +54,11 @@ enum CommandIds { | |||
54 | 54 | ||
55 | QByteArray name(int commandId); | 55 | QByteArray name(int commandId); |
56 | 56 | ||
57 | int AKONADI2COMMON_EXPORT headerSize(); | 57 | int SINKCOMMON_EXPORT headerSize(); |
58 | void AKONADI2COMMON_EXPORT write(QIODevice *device, int messageId, int commandId); | 58 | void SINKCOMMON_EXPORT write(QIODevice *device, int messageId, int commandId); |
59 | void AKONADI2COMMON_EXPORT write(QIODevice *device, int messageId, int commandId, const char *buffer, uint size); | 59 | void SINKCOMMON_EXPORT write(QIODevice *device, int messageId, int commandId, const char *buffer, uint size); |
60 | void AKONADI2COMMON_EXPORT write(QIODevice *device, int messageId, int commandId, flatbuffers::FlatBufferBuilder &fbb); | 60 | void SINKCOMMON_EXPORT write(QIODevice *device, int messageId, int commandId, flatbuffers::FlatBufferBuilder &fbb); |
61 | 61 | ||
62 | } | 62 | } |
63 | 63 | ||
64 | } // namespace Akonadi2 | 64 | } // namespace Sink |