summaryrefslogtreecommitdiffstats
path: root/common/storage/key.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/storage/key.cpp')
-rw-r--r--common/storage/key.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/storage/key.cpp b/common/storage/key.cpp
index 01a3e3a..4dacca2 100644
--- a/common/storage/key.cpp
+++ b/common/storage/key.cpp
@@ -46,8 +46,14 @@ QDebug &operator<<(QDebug &dbg, const Key &key)
46 46
47// Identifier 47// Identifier
48 48
49Identifier Identifier::createIdentifier()
50{
51 return Identifier(QUuid::createUuid());
52}
53
49QByteArray Identifier::toInternalByteArray() const 54QByteArray Identifier::toInternalByteArray() const
50{ 55{
56 Q_ASSERT(!uid.isNull());
51 return uid.toRfc4122(); 57 return uid.toRfc4122();
52} 58}
53 59