diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-05-08 23:38:52 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-05-08 23:38:52 +0200 |
commit | 7f4e3f838d2ca27a6f3910208235ec4b96725f14 (patch) | |
tree | 82a56c4c43e6a0a4fd460cb201d1205b1028a25a /common/storage.h | |
parent | 32a2d9b61193db0a3f7ab6f45113c7d3d1ce6a92 (diff) | |
download | sink-7f4e3f838d2ca27a6f3910208235ec4b96725f14.tar.gz sink-7f4e3f838d2ca27a6f3910208235ec4b96725f14.zip |
Export DbLayout
Diffstat (limited to 'common/storage.h')
-rw-r--r-- | common/storage.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/common/storage.h b/common/storage.h index 42cdcac..b664e11 100644 --- a/common/storage.h +++ b/common/storage.h | |||
@@ -30,9 +30,10 @@ | |||
30 | namespace Sink { | 30 | namespace Sink { |
31 | namespace Storage { | 31 | namespace Storage { |
32 | 32 | ||
33 | struct DbLayout { | 33 | struct SINK_EXPORT DbLayout { |
34 | typedef QMap<QByteArray, int> Databases; | ||
34 | QByteArray name; | 35 | QByteArray name; |
35 | QMap<QByteArray, int> tables; | 36 | Databases tables; |
36 | }; | 37 | }; |
37 | 38 | ||
38 | class SINK_EXPORT DataStore | 39 | class SINK_EXPORT DataStore |