Commit 5ec843dc authored by Max Kellermann's avatar Max Kellermann

*Commands: move to src/command/

parent a78b2d84
...@@ -78,16 +78,17 @@ src_mpd_SOURCES = \ ...@@ -78,16 +78,17 @@ src_mpd_SOURCES = \
src/protocol/Ack.cxx src/protocol/Ack.hxx \ src/protocol/Ack.cxx src/protocol/Ack.hxx \
src/protocol/ArgParser.cxx src/protocol/ArgParser.hxx \ src/protocol/ArgParser.cxx src/protocol/ArgParser.hxx \
src/protocol/Result.cxx src/protocol/Result.hxx \ src/protocol/Result.cxx src/protocol/Result.hxx \
src/CommandResult.hxx \ src/command/CommandResult.hxx \
src/CommandError.cxx src/CommandError.hxx \ src/command/CommandError.cxx src/command/CommandError.hxx \
src/AllCommands.cxx src/AllCommands.hxx \ src/command/AllCommands.cxx src/command/AllCommands.hxx \
src/QueueCommands.cxx src/QueueCommands.hxx \ src/command/QueueCommands.cxx src/command/QueueCommands.hxx \
src/PlayerCommands.cxx src/PlayerCommands.hxx \ src/command/PlayerCommands.cxx src/command/PlayerCommands.hxx \
src/PlaylistCommands.cxx src/PlaylistCommands.hxx \ src/command/PlaylistCommands.cxx src/command/PlaylistCommands.hxx \
src/DatabaseCommands.cxx src/DatabaseCommands.hxx \ src/command/DatabaseCommands.cxx src/command/DatabaseCommands.hxx \
src/OutputCommands.cxx src/OutputCommands.hxx \ src/command/OutputCommands.cxx src/command/OutputCommands.hxx \
src/MessageCommands.cxx src/MessageCommands.hxx \ src/command/MessageCommands.cxx src/command/MessageCommands.hxx \
src/OtherCommands.cxx src/OtherCommands.hxx \ src/command/OtherCommands.cxx src/command/OtherCommands.hxx \
src/command/CommandListBuilder.cxx src/command/CommandListBuilder.hxx \
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 \
...@@ -128,7 +129,6 @@ src_mpd_SOURCES = \ ...@@ -128,7 +129,6 @@ src_mpd_SOURCES = \
src/UpdateContainer.cxx src/UpdateContainer.hxx \ src/UpdateContainer.cxx src/UpdateContainer.hxx \
src/UpdateInternal.hxx \ src/UpdateInternal.hxx \
src/UpdateRemove.cxx src/UpdateRemove.hxx \ src/UpdateRemove.cxx src/UpdateRemove.hxx \
src/CommandListBuilder.cxx src/CommandListBuilder.hxx \
src/Client.cxx src/Client.hxx \ src/Client.cxx src/Client.hxx \
src/ClientInternal.hxx \ src/ClientInternal.hxx \
src/ClientEvent.cxx \ src/ClientEvent.cxx \
...@@ -232,7 +232,7 @@ endif ...@@ -232,7 +232,7 @@ endif
if ENABLE_SQLITE if ENABLE_SQLITE
src_mpd_SOURCES += \ src_mpd_SOURCES += \
src/StickerCommands.cxx src/StickerCommands.hxx \ src/command/StickerCommands.cxx src/command/StickerCommands.hxx \
src/StickerDatabase.cxx src/StickerDatabase.hxx \ src/StickerDatabase.cxx src/StickerDatabase.hxx \
src/StickerPrint.cxx src/StickerPrint.hxx \ src/StickerPrint.cxx src/StickerPrint.hxx \
src/SongSticker.cxx src/SongSticker.hxx src/SongSticker.cxx src/SongSticker.hxx
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "ClientMessage.hxx" #include "ClientMessage.hxx"
#include "CommandListBuilder.hxx" #include "command/CommandListBuilder.hxx"
#include "event/FullyBufferedSocket.hxx" #include "event/FullyBufferedSocket.hxx"
#include "event/TimeoutMonitor.hxx" #include "event/TimeoutMonitor.hxx"
#include "Compiler.h" #include "Compiler.h"
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include "check.h" #include "check.h"
#include "Client.hxx" #include "Client.hxx"
#include "CommandResult.hxx" #include "command/CommandResult.hxx"
enum { enum {
CLIENT_MAX_SUBSCRIPTIONS = 16, CLIENT_MAX_SUBSCRIPTIONS = 16,
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include "config.h" #include "config.h"
#include "ClientInternal.hxx" #include "ClientInternal.hxx"
#include "protocol/Result.hxx" #include "protocol/Result.hxx"
#include "AllCommands.hxx" #include "command/AllCommands.hxx"
#include "Log.hxx" #include "Log.hxx"
#include <string.h> #include <string.h>
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
#include "Listen.hxx" #include "Listen.hxx"
#include "Client.hxx" #include "Client.hxx"
#include "ClientList.hxx" #include "ClientList.hxx"
#include "AllCommands.hxx" #include "command/AllCommands.hxx"
#include "Partition.hxx" #include "Partition.hxx"
#include "Volume.hxx" #include "Volume.hxx"
#include "OutputAll.hxx" #include "OutputAll.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