Client*: move to client/

This commit is contained in:
Max Kellermann 2014-01-24 00:26:53 +01:00
parent 08296cd66d
commit e199c33c6e
43 changed files with 43 additions and 43 deletions

View File

@ -133,20 +133,20 @@ src_mpd_SOURCES = \
src/update/UpdateContainer.cxx src/update/UpdateContainer.hxx \
src/update/UpdateInternal.hxx \
src/update/UpdateRemove.cxx src/update/UpdateRemove.hxx \
src/Client.cxx src/Client.hxx \
src/ClientInternal.hxx \
src/ClientEvent.cxx \
src/ClientExpire.cxx \
src/ClientGlobal.cxx \
src/ClientIdle.cxx \
src/ClientList.cxx src/ClientList.hxx \
src/ClientNew.cxx \
src/ClientProcess.cxx \
src/ClientRead.cxx \
src/ClientWrite.cxx \
src/ClientMessage.cxx src/ClientMessage.hxx \
src/ClientSubscribe.cxx \
src/ClientFile.cxx src/ClientFile.hxx \
src/client/Client.cxx src/client/Client.hxx \
src/client/ClientInternal.hxx \
src/client/ClientEvent.cxx \
src/client/ClientExpire.cxx \
src/client/ClientGlobal.cxx \
src/client/ClientIdle.cxx \
src/client/ClientList.cxx src/client/ClientList.hxx \
src/client/ClientNew.cxx \
src/client/ClientProcess.cxx \
src/client/ClientRead.cxx \
src/client/ClientWrite.cxx \
src/client/ClientMessage.cxx src/client/ClientMessage.hxx \
src/client/ClientSubscribe.cxx \
src/client/ClientFile.cxx src/client/ClientFile.hxx \
src/Listen.cxx src/Listen.hxx \
src/LogInit.cxx src/LogInit.hxx \
src/LogBackend.cxx src/LogBackend.hxx \

View File

@ -23,7 +23,7 @@
#include "SongFilter.hxx"
#include "SongPrint.hxx"
#include "TimePrint.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include "tag/Tag.hxx"
#include "LightSong.hxx"
#include "LightDirectory.hxx"

View File

@ -21,7 +21,7 @@
#include "Listen.hxx"
#include "Main.hxx"
#include "Instance.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include "config/ConfigData.hxx"
#include "config/ConfigGlobal.hxx"
#include "config/ConfigOption.hxx"

View File

@ -32,8 +32,8 @@
#include "DatabaseSimple.hxx"
#include "Permission.hxx"
#include "Listen.hxx"
#include "Client.hxx"
#include "ClientList.hxx"
#include "client/Client.hxx"
#include "client/ClientList.hxx"
#include "command/AllCommands.hxx"
#include "Partition.hxx"
#include "Volume.hxx"

View File

@ -25,7 +25,7 @@
#include "SongPrint.hxx"
#include "DatabaseGlue.hxx"
#include "DatabasePlugin.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include "InputStream.hxx"
#include "DetachedSong.hxx"
#include "fs/Traits.hxx"

View File

@ -24,7 +24,7 @@
#include "TimePrint.hxx"
#include "TagPrint.hxx"
#include "Mapper.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include "util/UriUtil.hxx"
#define SONG_FILE "file: "

View File

@ -20,7 +20,7 @@
#include "config.h"
#include "Stats.hxx"
#include "PlayerControl.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include "DatabaseSelection.hxx"
#include "DatabaseGlue.hxx"
#include "DatabasePlugin.hxx"

View File

@ -20,7 +20,7 @@
#include "config.h"
#include "StickerPrint.hxx"
#include "StickerDatabase.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
void
sticker_print_value(Client &client,

View File

@ -21,7 +21,7 @@
#include "TagPrint.hxx"
#include "tag/Tag.hxx"
#include "tag/TagSettings.h"
#include "Client.hxx"
#include "client/Client.hxx"
#define SONG_TIME "Time: "

View File

@ -19,7 +19,7 @@
#include "config.h"
#include "TimePrint.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
void
time_print(Client &client, const char *name, time_t t)

View File

@ -31,7 +31,7 @@
#include "Permission.hxx"
#include "tag/TagType.h"
#include "protocol/Result.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include "util/Tokenizer.hxx"
#include "util/Error.hxx"

View File

@ -19,7 +19,7 @@
#include "config.h"
#include "CommandListBuilder.hxx"
#include "ClientInternal.hxx"
#include "client/ClientInternal.hxx"
#include <string.h>

View File

@ -24,7 +24,7 @@
#include "DatabasePrint.hxx"
#include "DatabaseSelection.hxx"
#include "CommandError.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include "tag/Tag.hxx"
#include "util/Error.hxx"
#include "SongFilter.hxx"

View File

@ -22,8 +22,8 @@
#include "CommandError.hxx"
#include "protocol/Ack.hxx"
#include "protocol/Result.hxx"
#include "ClientFile.hxx"
#include "Client.hxx"
#include "client/ClientFile.hxx"
#include "client/Client.hxx"
#include "util/CharUtil.hxx"
#include "util/UriUtil.hxx"
#include "util/Error.hxx"

View File

@ -19,8 +19,8 @@
#include "config.h"
#include "MessageCommands.hxx"
#include "Client.hxx"
#include "ClientList.hxx"
#include "client/Client.hxx"
#include "client/ClientList.hxx"
#include "Instance.hxx"
#include "Main.hxx"
#include "protocol/Result.hxx"

View File

@ -43,8 +43,8 @@
#include "Permission.hxx"
#include "PlaylistFile.hxx"
#include "PlaylistVector.hxx"
#include "ClientFile.hxx"
#include "Client.hxx"
#include "client/ClientFile.hxx"
#include "client/Client.hxx"
#include "Idle.hxx"
#include <assert.h>

View File

@ -23,7 +23,7 @@
#include "Playlist.hxx"
#include "PlaylistPrint.hxx"
#include "update/UpdateGlue.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include "Volume.hxx"
#include "output/OutputAll.hxx"
#include "Partition.hxx"

View File

@ -28,7 +28,7 @@
#include "playlist/PlaylistQueue.hxx"
#include "playlist/Print.hxx"
#include "TimePrint.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include "protocol/ArgParser.hxx"
#include "protocol/Result.hxx"
#include "ls.hxx"

View File

@ -25,8 +25,8 @@
#include "DatabaseSelection.hxx"
#include "Playlist.hxx"
#include "PlaylistPrint.hxx"
#include "ClientFile.hxx"
#include "Client.hxx"
#include "client/ClientFile.hxx"
#include "client/Client.hxx"
#include "Partition.hxx"
#include "protocol/ArgParser.hxx"
#include "protocol/Result.hxx"

View File

@ -20,7 +20,7 @@
#include "config.h"
#include "TagCommands.hxx"
#include "CommandError.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include "protocol/ArgParser.hxx"
#include "protocol/Result.hxx"
#include "tag/Tag.hxx"

View File

@ -21,7 +21,7 @@
#include "DecoderPrint.hxx"
#include "DecoderList.hxx"
#include "DecoderPlugin.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include <functional>

View File

@ -21,7 +21,7 @@
#include "ls.hxx"
#include "util/StringUtil.hxx"
#include "util/UriUtil.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include <assert.h>

View File

@ -26,7 +26,7 @@
#include "OutputPrint.hxx"
#include "OutputAll.hxx"
#include "OutputInternal.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
void
printAudioDevices(Client &client)

View File

@ -19,7 +19,7 @@
#include "config.h"
#include "Result.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
#include <assert.h>

View File

@ -22,7 +22,7 @@
#include "Queue.hxx"
#include "SongFilter.hxx"
#include "SongPrint.hxx"
#include "Client.hxx"
#include "client/Client.hxx"
/**
* Send detailed information about a range of songs in the queue to a