summaryrefslogtreecommitdiff
path: root/src/TagStream.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2016-02-22 17:38:06 +0100
committerMax Kellermann <max@duempel.org>2016-02-22 17:38:06 +0100
commita5f8fd774d91c0e632ef87e596507b86cd142aec (patch)
treedfd4aaa649b7d96cc7bba079815771137db7a535 /src/TagStream.hxx
parentcc5443c38eddbbd2894436b1e2107f8dda7262b8 (diff)
tag/handler: use CamelCase
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