IdleFlags: move to procool/
This commit is contained in:
parent
12eaaef210
commit
d45b7cc972
|
@ -339,6 +339,7 @@ sources = [
|
|||
version_cxx,
|
||||
'src/Main.cxx',
|
||||
'src/protocol/ArgParser.cxx',
|
||||
'src/protocol/IdleFlags.cxx',
|
||||
'src/command/CommandError.cxx',
|
||||
'src/command/PositionArg.cxx',
|
||||
'src/command/AllCommands.cxx',
|
||||
|
@ -357,7 +358,6 @@ sources = [
|
|||
'src/config/PlayerConfig.cxx',
|
||||
'src/config/ReplayGainConfig.cxx',
|
||||
'src/Idle.cxx',
|
||||
'src/IdleFlags.cxx',
|
||||
'src/decoder/Thread.cxx',
|
||||
'src/decoder/Control.cxx',
|
||||
'src/decoder/Bridge.cxx',
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#ifndef MPD_IDLE_HXX
|
||||
#define MPD_IDLE_HXX
|
||||
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
|
||||
/**
|
||||
* Adds idle flag (with bitwise "or") and queues notifications to all
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include "config.h"
|
||||
#include "Instance.hxx"
|
||||
#include "Partition.hxx"
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
#include "StateFile.hxx"
|
||||
#include "Stats.hxx"
|
||||
#include "client/List.hxx"
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include "command/AllCommands.hxx"
|
||||
#include "Partition.hxx"
|
||||
#include "tag/Config.hxx"
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
#include "Log.hxx"
|
||||
#include "LogInit.hxx"
|
||||
#include "input/Init.hxx"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "config/PartitionConfig.hxx"
|
||||
#include "lib/fmt/ExceptionFormatter.hxx"
|
||||
#include "song/DetachedSong.hxx"
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
#include "client/Listener.hxx"
|
||||
#include "client/Client.hxx"
|
||||
#include "input/cache/Manager.hxx"
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
#include "Partition.hxx"
|
||||
#include "Instance.hxx"
|
||||
#include "BackgroundCommand.hxx"
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
#include "config.h"
|
||||
|
||||
Client::~Client() noexcept
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "Client.hxx"
|
||||
#include "Partition.hxx"
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
|
||||
#include <cassert>
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#include "client/Response.hxx"
|
||||
#include "Partition.hxx"
|
||||
#include "Instance.hxx"
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
#include "Log.hxx"
|
||||
#include "Mapper.hxx"
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "client/Client.hxx"
|
||||
#include "client/Response.hxx"
|
||||
#include "Partition.hxx"
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
#include "util/CharUtil.hxx"
|
||||
#include "util/StringVerify.hxx"
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include "Request.hxx"
|
||||
#include "Instance.hxx"
|
||||
#include "Partition.hxx"
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
#include "output/Filtered.hxx"
|
||||
#include "client/Client.hxx"
|
||||
#include "client/Response.hxx"
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#include "client/Response.hxx"
|
||||
#include "Partition.hxx"
|
||||
#include "Instance.hxx"
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
#include "lib/fmt/AudioFormatFormatter.hxx"
|
||||
#include "util/StringBuffer.hxx"
|
||||
#include "util/ScopeExit.hxx"
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include "db/plugins/simple/SimpleDatabasePlugin.hxx"
|
||||
#include "db/update/Service.hxx"
|
||||
#include "TimePrint.hxx"
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
|
||||
#include <fmt/format.h>
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include "mixer/Mixer.hxx"
|
||||
#include "mixer/Memento.hxx"
|
||||
#include "mixer/Listener.hxx"
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
#include "Partition.hxx"
|
||||
|
||||
extern unsigned audio_output_state_version;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#include "IdleFlags.hxx"
|
||||
#include "protocol/IdleFlags.hxx"
|
||||
#include "util/ASCII.hxx"
|
||||
|
||||
#include <cassert>
|
Loading…
Reference in New Issue