From 3d2558bde6cebd6b628935f2852572cc7bb6eeab Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 7 Oct 2014 19:45:40 +0200 Subject: StoragePlugin: pass EventLoop to constructor --- src/storage/StoragePlugin.hxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/storage/StoragePlugin.hxx') 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 -- cgit v1.2.3