Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
6135f076
Commit
6135f076
authored
Oct 26, 2016
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist/cue/CueParser: update API documentation
parent
307964d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
CueParser.hxx
src/playlist/cue/CueParser.hxx
+7
-8
No files found.
src/playlist/cue/CueParser.hxx
View file @
6135f076
...
...
@@ -83,34 +83,33 @@ class CueParser {
/**
* A song that is completely finished and can be returned to
* the caller via
cue_parser_g
et().
* the caller via
G
et().
*/
std
::
unique_ptr
<
DetachedSong
>
finished
;
/**
* Tracks whether cue_parser_finish() has been called. If
* true, then all remaining (partial) results will be
* delivered by cue_parser_get().
* Tracks whether Finish() has been called. If true, then all
* remaining (partial) results will be delivered by Get().
*/
bool
end
=
false
;
public
:
/**
* Feed a text line from the CUE file into the parser. Call
*
cue_parser_g
et() after this to see if a song has been finished.
*
G
et() after this to see if a song has been finished.
*/
void
Feed
(
const
char
*
line
);
/**
* Tell the parser that the end of the file has been reached. Call
*
cue_parser_g
et() after this to see if a song has been finished.
*
G
et() after this to see if a song has been finished.
* This procedure must be done twice!
*/
void
Finish
();
/**
* Check if a song was finished by the last
cue_parser_feed() or
* c
ue_parser_finish() c
all.
* Check if a song was finished by the last
Feed() or Finish()
* call.
*
* @return a song object that must be freed by the caller, or NULL if
* no song was finished at this time
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment