*Commands: move to src/command/
This commit is contained in:
parent
a78b2d84ed
commit
5ec843dcc8
24
Makefile.am
24
Makefile.am
|
@ -78,16 +78,17 @@ src_mpd_SOURCES = \
|
|||
src/protocol/Ack.cxx src/protocol/Ack.hxx \
|
||||
src/protocol/ArgParser.cxx src/protocol/ArgParser.hxx \
|
||||
src/protocol/Result.cxx src/protocol/Result.hxx \
|
||||
src/CommandResult.hxx \
|
||||
src/CommandError.cxx src/CommandError.hxx \
|
||||
src/AllCommands.cxx src/AllCommands.hxx \
|
||||
src/QueueCommands.cxx src/QueueCommands.hxx \
|
||||
src/PlayerCommands.cxx src/PlayerCommands.hxx \
|
||||
src/PlaylistCommands.cxx src/PlaylistCommands.hxx \
|
||||
src/DatabaseCommands.cxx src/DatabaseCommands.hxx \
|
||||
src/OutputCommands.cxx src/OutputCommands.hxx \
|
||||
src/MessageCommands.cxx src/MessageCommands.hxx \
|
||||
src/OtherCommands.cxx src/OtherCommands.hxx \
|
||||
src/command/CommandResult.hxx \
|
||||
src/command/CommandError.cxx src/command/CommandError.hxx \
|
||||
src/command/AllCommands.cxx src/command/AllCommands.hxx \
|
||||
src/command/QueueCommands.cxx src/command/QueueCommands.hxx \
|
||||
src/command/PlayerCommands.cxx src/command/PlayerCommands.hxx \
|
||||
src/command/PlaylistCommands.cxx src/command/PlaylistCommands.hxx \
|
||||
src/command/DatabaseCommands.cxx src/command/DatabaseCommands.hxx \
|
||||
src/command/OutputCommands.cxx src/command/OutputCommands.hxx \
|
||||
src/command/MessageCommands.cxx src/command/MessageCommands.hxx \
|
||||
src/command/OtherCommands.cxx src/command/OtherCommands.hxx \
|
||||
src/command/CommandListBuilder.cxx src/command/CommandListBuilder.hxx \
|
||||
src/Idle.cxx src/Idle.hxx \
|
||||
src/CommandLine.cxx src/CommandLine.hxx \
|
||||
src/CrossFade.cxx src/CrossFade.hxx \
|
||||
|
@ -128,7 +129,6 @@ src_mpd_SOURCES = \
|
|||
src/UpdateContainer.cxx src/UpdateContainer.hxx \
|
||||
src/UpdateInternal.hxx \
|
||||
src/UpdateRemove.cxx src/UpdateRemove.hxx \
|
||||
src/CommandListBuilder.cxx src/CommandListBuilder.hxx \
|
||||
src/Client.cxx src/Client.hxx \
|
||||
src/ClientInternal.hxx \
|
||||
src/ClientEvent.cxx \
|
||||
|
@ -232,7 +232,7 @@ endif
|
|||
|
||||
if ENABLE_SQLITE
|
||||
src_mpd_SOURCES += \
|
||||
src/StickerCommands.cxx src/StickerCommands.hxx \
|
||||
src/command/StickerCommands.cxx src/command/StickerCommands.hxx \
|
||||
src/StickerDatabase.cxx src/StickerDatabase.hxx \
|
||||
src/StickerPrint.cxx src/StickerPrint.hxx \
|
||||
src/SongSticker.cxx src/SongSticker.hxx
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include "check.h"
|
||||
#include "ClientMessage.hxx"
|
||||
#include "CommandListBuilder.hxx"
|
||||
#include "command/CommandListBuilder.hxx"
|
||||
#include "event/FullyBufferedSocket.hxx"
|
||||
#include "event/TimeoutMonitor.hxx"
|
||||
#include "Compiler.h"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include "check.h"
|
||||
#include "Client.hxx"
|
||||
#include "CommandResult.hxx"
|
||||
#include "command/CommandResult.hxx"
|
||||
|
||||
enum {
|
||||
CLIENT_MAX_SUBSCRIPTIONS = 16,
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include "config.h"
|
||||
#include "ClientInternal.hxx"
|
||||
#include "protocol/Result.hxx"
|
||||
#include "AllCommands.hxx"
|
||||
#include "command/AllCommands.hxx"
|
||||
#include "Log.hxx"
|
||||
|
||||
#include <string.h>
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
#include "Listen.hxx"
|
||||
#include "Client.hxx"
|
||||
#include "ClientList.hxx"
|
||||
#include "AllCommands.hxx"
|
||||
#include "command/AllCommands.hxx"
|
||||
#include "Partition.hxx"
|
||||
#include "Volume.hxx"
|
||||
#include "OutputAll.hxx"
|
||||
|
|
Loading…
Reference in New Issue