Commit 438a6d75 authored by Max Kellermann's avatar Max Kellermann

client/Client: make several getter methods const

parent 00ed836a
......@@ -82,19 +82,19 @@ Client::SetPartition(Partition &new_partition) noexcept
}
Instance &
Client::GetInstance() noexcept
Client::GetInstance() const noexcept
{
return partition->instance;
}
playlist &
Client::GetPlaylist() noexcept
Client::GetPlaylist() const noexcept
{
return partition->playlist;
}
PlayerControl &
Client::GetPlayerControl() noexcept
Client::GetPlayerControl() const noexcept
{
return partition->pc;
}
......
......@@ -230,20 +230,20 @@ public:
*/
void AllowFile(Path path_fs) const;
Partition &GetPartition() noexcept {
Partition &GetPartition() const noexcept {
return *partition;
}
void SetPartition(Partition &new_partition) noexcept;
gcc_pure
Instance &GetInstance() noexcept;
Instance &GetInstance() const noexcept;
gcc_pure
playlist &GetPlaylist() noexcept;
playlist &GetPlaylist() const noexcept;
gcc_pure
PlayerControl &GetPlayerControl() noexcept;
PlayerControl &GetPlayerControl() const noexcept;
/**
* Wrapper for Instance::GetDatabase().
......
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