diff options
author | Max Kellermann <max@duempel.org> | 2013-07-30 20:11:57 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-30 20:19:53 +0200 |
commit | 06f898cc1240a29b293de0e97ad95a4fdc971254 (patch) | |
tree | 001a6d3db039cdc03323f3bfddc13b94bde31ce4 /src/cue/CueParser.hxx | |
parent | 6a9ab8bc0e2f5d34803513bb2d94d041a607a58c (diff) | |
download | mpd-06f898cc1240a29b293de0e97ad95a4fdc971254.tar.gz mpd-06f898cc1240a29b293de0e97ad95a4fdc971254.tar.xz mpd-06f898cc1240a29b293de0e97ad95a4fdc971254.zip |
tag: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/cue/CueParser.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cue/CueParser.hxx b/src/cue/CueParser.hxx index ad2a6f34c..5cb51200f 100644 --- a/src/cue/CueParser.hxx +++ b/src/cue/CueParser.hxx @@ -24,6 +24,7 @@ #include "gcc.h" struct Song; +struct Tag; class CueParser { enum { @@ -53,7 +54,7 @@ class CueParser { IGNORE_TRACK, } state; - struct tag *tag; + Tag *tag; char *filename; @@ -115,7 +116,7 @@ public: private: gcc_pure - struct tag *GetCurrentTag(); + Tag *GetCurrentTag(); /** * Commit the current song. It will be moved to "previous", |