diff options
author | Max Kellermann <max@musicpd.org> | 2018-07-05 19:07:05 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-07-05 19:07:05 +0200 |
commit | 3d3a1232b1d2b58d2cc05b2dd5c37f2256832693 (patch) | |
tree | 250933da4d5dc29145ce18e5a05a7f8da30396fd /src/TagArchive.hxx | |
parent | 09d4176210d66cf9e2d258b563a7811892c560f4 (diff) |
tag/Handler: convert to class with virtual methods
Diffstat (limited to 'src/TagArchive.hxx')
-rw-r--r-- | src/TagArchive.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TagArchive.hxx b/src/TagArchive.hxx index 466ba8e78..f11b05fee 100644 --- a/src/TagArchive.hxx +++ b/src/TagArchive.hxx @@ -23,7 +23,7 @@ #include "check.h" class ArchiveFile; -struct TagHandler; +class TagHandler; class TagBuilder; /** @@ -36,7 +36,7 @@ class TagBuilder; */ bool tag_archive_scan(ArchiveFile &archive, const char *path_utf8, - const TagHandler &handler, void *handler_ctx) noexcept; + TagHandler &handler) noexcept; /** * Scan the tags of a song file inside an archive. Invokes matching |