mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-14 09:36:41 +02:00
16 lines
208 B
C++
16 lines
208 B
C++
#include "streamClient.h"
|
|
|
|
|
|
StreamClient::StreamClient(MessageReceiver* _receiver, const std::string& _ip, size_t _port) : ClientConnection(_receiver, _ip, _port)
|
|
{
|
|
}
|
|
|
|
|
|
StreamClient::~StreamClient()
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
|