2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2017-12-19 08:45:34 +01:00
|
|
|
|
|
|
|
#include "Interface.hxx"
|
|
|
|
|
|
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
void
|
2020-03-12 20:56:11 +01:00
|
|
|
AudioOutput::SetAttribute([[maybe_unused]] std::string &&name,
|
|
|
|
[[maybe_unused]] std::string &&value)
|
2017-12-19 08:45:34 +01:00
|
|
|
{
|
|
|
|
throw std::invalid_argument("Unsupported attribute");
|
|
|
|
}
|