summaryrefslogtreecommitdiff
path: root/src/TagStream.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/TagStream.hxx')
-rw-r--r--src/TagStream.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/TagStream.hxx b/src/TagStream.hxx
index e1bd25b56..a8690d62b 100644
--- a/src/TagStream.hxx
+++ b/src/TagStream.hxx
@@ -23,7 +23,7 @@
#include "check.h"
class InputStream;
-struct tag_handler;
+struct TagHandler;
/**
* Scan the tags of an #InputStream. Invokes matching decoder
@@ -33,9 +33,9 @@ struct tag_handler;
* found)
*/
bool
-tag_stream_scan(InputStream &is, const tag_handler &handler, void *ctx);
+tag_stream_scan(InputStream &is, const TagHandler &handler, void *ctx);
bool
-tag_stream_scan(const char *uri, const tag_handler &handler, void *ctx);
+tag_stream_scan(const char *uri, const TagHandler &handler, void *ctx);
#endif