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
3203a7dd
Commit
3203a7dd
authored
Jan 26, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tag_file: convert to C++
parent
86b0adc8
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
8 deletions
+12
-8
Makefile.am
Makefile.am
+2
-2
TagFile.cxx
src/TagFile.cxx
+6
-2
TagFile.hxx
src/TagFile.hxx
+3
-3
EmbeddedCuePlaylistPlugin.cxx
src/playlist/EmbeddedCuePlaylistPlugin.cxx
+1
-1
No files found.
Makefile.am
View file @
3203a7dd
...
...
@@ -269,7 +269,7 @@ src_mpd_SOURCES = \
src/TagPrint.cxx src/TagPrint.hxx
\
src/TagSave.cxx src/TagSave.hxx
\
src/tag_handler.c src/tag_handler.h
\
src/
tag_file.c src/tag_file.h
\
src/
TagFile.cxx src/TagFile.hxx
\
src/tokenizer.c
\
src/TextFile.cxx src/TextFile.hxx
\
src/text_input_stream.c
\
...
...
@@ -1115,7 +1115,7 @@ test_dump_playlist_SOURCES = test/dump_playlist.cxx \
src/ConfigFile.cxx src/tokenizer.c src/utils.c src/string_util.c
\
src/uri.c
\
src/Song.cxx src/Tag.cxx src/TagNames.c src/TagPool.cxx src/TagSave.cxx
\
src/tag_handler.c src/
tag_file.c
\
src/tag_handler.c src/
TagFile.cxx
\
src/audio_check.c src/pcm_buffer.c
\
src/text_input_stream.c
\
src/cue/cue_parser.c src/cue/cue_parser.h
\
...
...
src/
tag_file.c
→
src/
TagFile.cxx
View file @
3203a7dd
/*
* Copyright (C) 2003-201
2
The Music Player Daemon Project
* Copyright (C) 2003-201
3
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -18,9 +18,13 @@
*/
#include "config.h"
#include "tag_file.h"
#include "TagFile.hxx"
extern
"C"
{
#include "uri.h"
#include "decoder_list.h"
}
#include "decoder_plugin.h"
#include "input_stream.h"
...
...
src/
tag_file.h
→
src/
TagFile.hxx
View file @
3203a7dd
/*
* Copyright (C) 2003-201
2
The Music Player Daemon Project
* Copyright (C) 2003-201
3
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_TAG_FILE_H
#define MPD_TAG_FILE_H
#ifndef MPD_TAG_FILE_H
XX
#define MPD_TAG_FILE_H
XX
#include "check.h"
...
...
src/playlist/EmbeddedCuePlaylistPlugin.cxx
View file @
3203a7dd
...
...
@@ -29,9 +29,9 @@
#include "tag.h"
#include "tag_handler.h"
#include "song.h"
#include "TagFile.hxx"
extern
"C"
{
#include "tag_file.h"
#include "tag_ape.h"
#include "tag_id3.h"
#include "cue/cue_parser.h"
...
...
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