Commit 1cc17bfe authored by Max Kellermann's avatar Max Kellermann

cue/CueParser: move to playlist/

parent 8ae492df
...@@ -83,7 +83,6 @@ src_mpd_SOURCES = \ ...@@ -83,7 +83,6 @@ src_mpd_SOURCES = \
src/Idle.cxx src/Idle.hxx \ src/Idle.cxx src/Idle.hxx \
src/CommandLine.cxx src/CommandLine.hxx \ src/CommandLine.cxx src/CommandLine.hxx \
src/CrossFade.cxx src/CrossFade.hxx \ src/CrossFade.cxx src/CrossFade.hxx \
src/cue/CueParser.cxx src/cue/CueParser.hxx \
src/decoder/DecoderError.cxx src/decoder/DecoderError.hxx \ src/decoder/DecoderError.cxx src/decoder/DecoderError.hxx \
src/decoder/DecoderThread.cxx src/decoder/DecoderThread.hxx \ src/decoder/DecoderThread.cxx src/decoder/DecoderThread.hxx \
src/decoder/DecoderCommand.hxx \ src/decoder/DecoderCommand.hxx \
...@@ -1163,6 +1162,7 @@ libplaylist_plugins_a_SOURCES = \ ...@@ -1163,6 +1162,7 @@ libplaylist_plugins_a_SOURCES = \
src/playlist/CloseSongEnumerator.hxx \ src/playlist/CloseSongEnumerator.hxx \
src/playlist/MemorySongEnumerator.cxx \ src/playlist/MemorySongEnumerator.cxx \
src/playlist/MemorySongEnumerator.hxx \ src/playlist/MemorySongEnumerator.hxx \
src/playlist/cue/CueParser.cxx src/playlist/cue/CueParser.hxx \
src/playlist/plugins/ExtM3uPlaylistPlugin.cxx \ src/playlist/plugins/ExtM3uPlaylistPlugin.cxx \
src/playlist/plugins/ExtM3uPlaylistPlugin.hxx \ src/playlist/plugins/ExtM3uPlaylistPlugin.hxx \
src/playlist/plugins/M3uPlaylistPlugin.cxx \ src/playlist/plugins/M3uPlaylistPlugin.cxx \
...@@ -1472,8 +1472,7 @@ test_dump_playlist_SOURCES = test/dump_playlist.cxx \ ...@@ -1472,8 +1472,7 @@ test_dump_playlist_SOURCES = test/dump_playlist.cxx \
src/TagSave.cxx \ src/TagSave.cxx \
src/TagFile.cxx \ src/TagFile.cxx \
src/CheckAudioFormat.cxx \ src/CheckAudioFormat.cxx \
src/DetachedSong.cxx \ src/DetachedSong.cxx
src/cue/CueParser.cxx src/cue/CueParser.hxx
if HAVE_FLAC if HAVE_FLAC
test_dump_playlist_SOURCES += \ test_dump_playlist_SOURCES += \
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "CuePlaylistPlugin.hxx" #include "CuePlaylistPlugin.hxx"
#include "../PlaylistPlugin.hxx" #include "../PlaylistPlugin.hxx"
#include "../SongEnumerator.hxx" #include "../SongEnumerator.hxx"
#include "cue/CueParser.hxx" #include "../cue/CueParser.hxx"
#include "input/TextInputStream.hxx" #include "input/TextInputStream.hxx"
#include <string> #include <string>
......
...@@ -27,12 +27,12 @@ ...@@ -27,12 +27,12 @@
#include "EmbeddedCuePlaylistPlugin.hxx" #include "EmbeddedCuePlaylistPlugin.hxx"
#include "../PlaylistPlugin.hxx" #include "../PlaylistPlugin.hxx"
#include "../SongEnumerator.hxx" #include "../SongEnumerator.hxx"
#include "../cue/CueParser.hxx"
#include "tag/TagHandler.hxx" #include "tag/TagHandler.hxx"
#include "tag/TagId3.hxx" #include "tag/TagId3.hxx"
#include "tag/ApeTag.hxx" #include "tag/ApeTag.hxx"
#include "DetachedSong.hxx" #include "DetachedSong.hxx"
#include "TagFile.hxx" #include "TagFile.hxx"
#include "cue/CueParser.hxx"
#include "fs/Traits.hxx" #include "fs/Traits.hxx"
#include "fs/AllocatedPath.hxx" #include "fs/AllocatedPath.hxx"
#include "util/ASCII.hxx" #include "util/ASCII.hxx"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment