diff options
Diffstat (limited to 'src/input/InputPlugin.hxx')
-rw-r--r-- | src/input/InputPlugin.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/input/InputPlugin.hxx b/src/input/InputPlugin.hxx index 08a9d42fd..d33161c93 100644 --- a/src/input/InputPlugin.hxx +++ b/src/input/InputPlugin.hxx @@ -36,7 +36,6 @@ struct ConfigBlock; class InputStream; -class Error; struct Tag; struct InputPlugin { @@ -58,9 +57,11 @@ struct InputPlugin { */ void (*finish)(); + /** + * Throws std::runtime_error on error. + */ InputStream *(*open)(const char *uri, - Mutex &mutex, Cond &cond, - Error &error); + Mutex &mutex, Cond &cond); }; #endif |