From 06f898cc1240a29b293de0e97ad95a4fdc971254 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 30 Jul 2013 20:11:57 +0200 Subject: tag: convert to C++ --- src/SongFilter.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/SongFilter.hxx') diff --git a/src/SongFilter.hxx b/src/SongFilter.hxx index 2b53d4524..88378d710 100644 --- a/src/SongFilter.hxx +++ b/src/SongFilter.hxx @@ -29,8 +29,8 @@ #define LOCATE_TAG_FILE_TYPE TAG_NUM_OF_ITEM_TYPES+10 #define LOCATE_TAG_ANY_TYPE TAG_NUM_OF_ITEM_TYPES+20 -struct tag; -struct tag_item; +struct Tag; +struct TagItem; struct Song; class SongFilter { @@ -65,10 +65,10 @@ class SongFilter { bool StringMatch(const char *s) const; gcc_pure - bool Match(const tag_item &tag_item) const; + bool Match(const TagItem &tag_item) const; gcc_pure - bool Match(const struct tag &tag) const; + bool Match(const Tag &tag) const; gcc_pure bool Match(const Song &song) const; @@ -91,7 +91,7 @@ public: bool Parse(unsigned argc, char *argv[], bool fold_case=false); gcc_pure - bool Match(const tag &tag) const; + bool Match(const Tag &tag) const; gcc_pure bool Match(const Song &song) const; -- cgit v1.2.3