mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-29 08:56:18 +02:00
Remove unused virtual stop call
This commit is contained in:
parent
63de108800
commit
787d0714c0
2 changed files with 2 additions and 30 deletions
|
@ -59,11 +59,10 @@ public:
|
|||
using OnLog = std::function<void(std::string message)>;
|
||||
|
||||
StreamControl(const boost::asio::any_io_executor& executor);
|
||||
virtual ~StreamControl();
|
||||
virtual ~StreamControl() = default;
|
||||
|
||||
void start(const std::string& stream_id, const ServerSettings& server_setttings, const OnNotification& notification_handler,
|
||||
const OnRequest& request_handler, const OnLog& log_handler);
|
||||
virtual void stop();
|
||||
|
||||
void command(const jsonrpcpp::Request& request, const OnResponse& response_handler);
|
||||
|
||||
|
@ -91,8 +90,6 @@ public:
|
|||
ScriptStreamControl(const boost::asio::any_io_executor& executor, const std::string& script, const std::string& params);
|
||||
virtual ~ScriptStreamControl() = default;
|
||||
|
||||
void stop() override;
|
||||
|
||||
protected:
|
||||
/// Send a message to stdin of the process
|
||||
void doCommand(const jsonrpcpp::Request& request) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue