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/StoragePlugin.hxx | |
parent | 1aac0b10c9499db77cbe39e43a0abc8cccc72079 (diff) |
StoragePlugin: pass EventLoop to constructor
Diffstat (limited to 'src/storage/StoragePlugin.hxx')
-rw-r--r-- | src/storage/StoragePlugin.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/storage/StoragePlugin.hxx b/src/storage/StoragePlugin.hxx index d91caf24b..15f431105 100644 --- a/src/storage/StoragePlugin.hxx +++ b/src/storage/StoragePlugin.hxx @@ -24,11 +24,13 @@ class Error; class Storage; +class EventLoop; struct StoragePlugin { const char *name; - Storage *(*create_uri)(const char *uri, Error &error); + Storage *(*create_uri)(EventLoop &event_loop, const char *uri, + Error &error); }; #endif |