diff options
Diffstat (limited to 'src/ArchiveFile.hxx')
-rw-r--r-- | src/ArchiveFile.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ArchiveFile.hxx b/src/ArchiveFile.hxx index c7933ebd1..de0ecc1e8 100644 --- a/src/ArchiveFile.hxx +++ b/src/ArchiveFile.hxx @@ -20,6 +20,8 @@ #ifndef MPD_ARCHIVE_FILE_HXX #define MPD_ARCHIVE_FILE_HXX +class Error; + class ArchiveFile { public: const struct archive_plugin &plugin; @@ -50,7 +52,7 @@ public: */ virtual input_stream *OpenStream(const char *path, Mutex &mutex, Cond &cond, - GError **error_r) = 0; + Error &error) = 0; }; #endif |