summaryrefslogtreecommitdiffstats
path: root/common/synchronizerstore.h
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-01-07 18:58:19 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-01-07 18:58:19 +0100
commit4603487f087fc9d15b3919d55d651e434fa3cc6a (patch)
tree4f834646f9b5cee686ebc60ab74d845b29277e40 /common/synchronizerstore.h
parent3aab8be81f96e8a32a1edc09b836e6c0264d39e7 (diff)
downloadsink-4603487f087fc9d15b3919d55d651e434fa3cc6a.tar.gz
sink-4603487f087fc9d15b3919d55d651e434fa3cc6a.zip
No more normalizedPath
Diffstat (limited to 'common/synchronizerstore.h')
-rw-r--r--common/synchronizerstore.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/synchronizerstore.h b/common/synchronizerstore.h
index be33562..8aef68e 100644
--- a/common/synchronizerstore.h
+++ b/common/synchronizerstore.h
@@ -56,8 +56,12 @@ public:
56 QByteArray resolveLocalId(const QByteArray &bufferType, const QByteArray &localId); 56 QByteArray resolveLocalId(const QByteArray &bufferType, const QByteArray &localId);
57 QByteArrayList resolveLocalIds(const QByteArray &bufferType, const QByteArrayList &localId); 57 QByteArrayList resolveLocalIds(const QByteArray &bufferType, const QByteArrayList &localId);
58 58
59 void removePrefix(const QByteArray &prefix);
60 void removeValue(const QByteArray &prefix, const QByteArray &key);
59 QByteArray readValue(const QByteArray &key); 61 QByteArray readValue(const QByteArray &key);
62 QByteArray readValue(const QByteArray &prefix, const QByteArray &key);
60 void writeValue(const QByteArray &key, const QByteArray &value); 63 void writeValue(const QByteArray &key, const QByteArray &value);
64 void writeValue(const QByteArray &prefix, const QByteArray &key, const QByteArray &value);
61 65
62private: 66private:
63 Sink::Storage::DataStore::Transaction &mTransaction; 67 Sink::Storage::DataStore::Transaction &mTransaction;