diff options
author | Max Kellermann <max@duempel.org> | 2014-10-07 19:45:40 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-10-09 07:45:25 +0200 |
commit | 3d2558bde6cebd6b628935f2852572cc7bb6eeab (patch) | |
tree | a2dcb1624f8d24cde3918c9ee955aae911c45417 /src/storage/Configured.hxx | |
parent | 1aac0b10c9499db77cbe39e43a0abc8cccc72079 (diff) |
StoragePlugin: pass EventLoop to constructor
Diffstat (limited to 'src/storage/Configured.hxx')
-rw-r--r-- | src/storage/Configured.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/storage/Configured.hxx b/src/storage/Configured.hxx index d78857a26..828a192c3 100644 --- a/src/storage/Configured.hxx +++ b/src/storage/Configured.hxx @@ -25,6 +25,7 @@ class Error; class Storage; +class EventLoop; /** * Read storage configuration settings and create a #Storage instance @@ -32,7 +33,7 @@ class Storage; * (no #Error set in that case). */ Storage * -CreateConfiguredStorage(Error &error); +CreateConfiguredStorage(EventLoop &event_loop, Error &error); /** * Returns true if there is configuration for a #Storage instance. |