diff options
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 |