diff options
author | Aaron Seigo <aseigo@kde.org> | 2014-12-15 19:28:05 +0100 |
---|---|---|
committer | Aaron Seigo <aseigo@kde.org> | 2014-12-15 19:28:05 +0100 |
commit | 3dd90236e7927028ff5c98635f8075189c9869c2 (patch) | |
tree | aefb7ce4e698b6c9d6993546d5e437a61d7ce4e3 /common/commands.cpp | |
parent | cb0f5fb769380db5771ff8e0dba8d780cdc92edb (diff) | |
download | sink-3dd90236e7927028ff5c98635f8075189c9869c2.tar.gz sink-3dd90236e7927028ff5c98635f8075189c9869c2.zip |
namespace everything in libs with Akonadi2
Diffstat (limited to 'common/commands.cpp')
-rw-r--r-- | common/commands.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/common/commands.cpp b/common/commands.cpp index b5773e7..474b091 100644 --- a/common/commands.cpp +++ b/common/commands.cpp | |||
@@ -2,6 +2,9 @@ | |||
2 | 2 | ||
3 | #include <QIODevice> | 3 | #include <QIODevice> |
4 | 4 | ||
5 | namespace Akonadi2 | ||
6 | { | ||
7 | |||
5 | namespace Commands | 8 | namespace Commands |
6 | { | 9 | { |
7 | 10 | ||
@@ -13,4 +16,6 @@ void write(QIODevice *device, int commandId, flatbuffers::FlatBufferBuilder &fbb | |||
13 | device->write((const char*)fbb.GetBufferPointer(), dataSize); | 16 | device->write((const char*)fbb.GetBufferPointer(), dataSize); |
14 | } | 17 | } |
15 | 18 | ||
16 | } \ No newline at end of file | 19 | } // namespace Commands |
20 | |||
21 | } // namespace Akonadi2 | ||