diff options
Diffstat (limited to 'src/Instance.hxx')
-rw-r--r-- | src/Instance.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Instance.hxx b/src/Instance.hxx index 52b137ab6..ca129ce80 100644 --- a/src/Instance.hxx +++ b/src/Instance.hxx @@ -31,6 +31,7 @@ class NeighborGlue; #ifdef ENABLE_DATABASE #include "db/DatabaseListener.hxx" class Database; +class LocalStorage; class UpdateService; #endif @@ -62,6 +63,8 @@ struct Instance final #ifdef ENABLE_DATABASE Database *database; + LocalStorage *storage; + UpdateService *update; #endif @@ -71,6 +74,7 @@ struct Instance final Instance() { #ifdef ENABLE_DATABASE + storage = nullptr; update = nullptr; #endif } |