mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-18 03:26:15 +02:00
23 lines
297 B
C++
23 lines
297 B
C++
#ifndef STREAM_CLIENT_H
|
|
#define STREAM_CLIENT_H
|
|
|
|
#include "common/socketConnection.h"
|
|
|
|
|
|
using boost::asio::ip::tcp;
|
|
|
|
|
|
class StreamClient : public ClientConnection
|
|
{
|
|
public:
|
|
StreamClient(MessageReceiver* _receiver, const std::string& _ip, size_t _port);
|
|
virtual ~StreamClient();
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|