Queue*: move to queue/
This commit is contained in:
parent
6b70f5e490
commit
129eb178eb
10
Makefile.am
10
Makefile.am
|
@ -189,10 +189,10 @@ src_mpd_SOURCES = \
|
|||
src/PlaylistInfo.hxx \
|
||||
src/PlaylistDatabase.cxx src/PlaylistDatabase.hxx \
|
||||
src/PlaylistUpdate.cxx \
|
||||
src/IdTable.hxx \
|
||||
src/Queue.cxx src/Queue.hxx \
|
||||
src/QueuePrint.cxx src/QueuePrint.hxx \
|
||||
src/QueueSave.cxx src/QueueSave.hxx \
|
||||
src/queue/IdTable.hxx \
|
||||
src/queue/Queue.cxx src/queue/Queue.hxx \
|
||||
src/queue/QueuePrint.cxx src/queue/QueuePrint.hxx \
|
||||
src/queue/QueueSave.cxx src/queue/QueueSave.hxx \
|
||||
src/ReplayGainConfig.cxx src/ReplayGainConfig.hxx \
|
||||
src/ReplayGainInfo.cxx src/ReplayGainInfo.hxx \
|
||||
src/SignalHandlers.cxx src/SignalHandlers.hxx \
|
||||
|
@ -1663,7 +1663,7 @@ test_test_translate_song_LDADD = \
|
|||
$(CPPUNIT_LIBS)
|
||||
|
||||
test_test_queue_priority_SOURCES = \
|
||||
src/Queue.cxx \
|
||||
src/queue/Queue.cxx \
|
||||
src/DetachedSong.cxx \
|
||||
test/test_queue_priority.cxx
|
||||
test_test_queue_priority_CPPFLAGS = $(AM_CPPFLAGS) $(CPPUNIT_CFLAGS) -DCPPUNIT_HAVE_RTTI=0
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#ifndef MPD_PLAYLIST_HXX
|
||||
#define MPD_PLAYLIST_HXX
|
||||
|
||||
#include "Queue.hxx"
|
||||
#include "queue/Queue.hxx"
|
||||
#include "PlaylistError.hxx"
|
||||
|
||||
enum TagType : uint8_t;
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "PlaylistPrint.hxx"
|
||||
#include "PlaylistFile.hxx"
|
||||
#include "Playlist.hxx"
|
||||
#include "QueuePrint.hxx"
|
||||
#include "queue/QueuePrint.hxx"
|
||||
#include "SongPrint.hxx"
|
||||
#include "DatabaseGlue.hxx"
|
||||
#include "DatabasePlugin.hxx"
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "PlaylistState.hxx"
|
||||
#include "PlaylistError.hxx"
|
||||
#include "Playlist.hxx"
|
||||
#include "QueueSave.hxx"
|
||||
#include "queue/QueueSave.hxx"
|
||||
#include "fs/TextFile.hxx"
|
||||
#include "PlayerControl.hxx"
|
||||
#include "ConfigGlobal.hxx"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "config.h"
|
||||
#include "Queue.hxx"
|
||||
#include "queue/Queue.hxx"
|
||||
#include "DetachedSong.hxx"
|
||||
#include "util/Macros.hxx"
|
||||
|
||||
|
|
Loading…
Reference in New Issue