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/storage_common.cpp | |
parent | cb0f5fb769380db5771ff8e0dba8d780cdc92edb (diff) | |
download | sink-3dd90236e7927028ff5c98635f8075189c9869c2.tar.gz sink-3dd90236e7927028ff5c98635f8075189c9869c2.zip |
namespace everything in libs with Akonadi2
Diffstat (limited to 'common/storage_common.cpp')
-rw-r--r-- | common/storage_common.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/storage_common.cpp b/common/storage_common.cpp index 6263bf2..099eb36 100644 --- a/common/storage_common.cpp +++ b/common/storage_common.cpp | |||
@@ -2,6 +2,9 @@ | |||
2 | 2 | ||
3 | #include <iostream> | 3 | #include <iostream> |
4 | 4 | ||
5 | namespace Akonadi2 | ||
6 | { | ||
7 | |||
5 | void errorHandler(const Storage::Error &error) | 8 | void errorHandler(const Storage::Error &error) |
6 | { | 9 | { |
7 | //TODO: allow this to be turned on / off globally | 10 | //TODO: allow this to be turned on / off globally |
@@ -29,3 +32,4 @@ void Storage::scan(const std::string &sKey, const std::function<bool(void *keyPt | |||
29 | scan(sKey.data(), sKey.size(), resultHandler, &errorHandler); | 32 | scan(sKey.data(), sKey.size(), resultHandler, &errorHandler); |
30 | } | 33 | } |
31 | 34 | ||
35 | } // namespace Akonadi2 | ||