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