summaryrefslogtreecommitdiffstats
path: root/common/commands.cpp
diff options
context:
space:
mode:
authorAaron Seigo <aseigo@kde.org>2014-12-15 19:28:05 +0100
committerAaron Seigo <aseigo@kde.org>2014-12-15 19:28:05 +0100
commit3dd90236e7927028ff5c98635f8075189c9869c2 (patch)
treeaefb7ce4e698b6c9d6993546d5e437a61d7ce4e3 /common/commands.cpp
parentcb0f5fb769380db5771ff8e0dba8d780cdc92edb (diff)
downloadsink-3dd90236e7927028ff5c98635f8075189c9869c2.tar.gz
sink-3dd90236e7927028ff5c98635f8075189c9869c2.zip
namespace everything in libs with Akonadi2
Diffstat (limited to 'common/commands.cpp')
-rw-r--r--common/commands.cpp7
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
5namespace Akonadi2
6{
7
5namespace Commands 8namespace 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