blob: bff14ece74996e71cd1d8fea341b4db97893856e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef SERVICESTREAMER_H
#define SERVICESTREAMER_H
#include "serviceStreamerCore.h"
class ServiceStreamer : public ServiceStreamerCore {
public:
ServiceStreamer(int sid, P2PVR::RawDataClientPrx, const Ice::CommunicatorPtr & ic, const Ice::ObjectAdapterPtr & a);
ServiceStreamer(int sid, P2PVR::RawDataClientPrx, const P2PVR::DevicesPrx & d, const P2PVR::SIPrx & s, const Ice::ObjectAdapterPtr & a);
~ServiceStreamer();
void Start();
private:
P2PVR::SIPrx si;
};
typedef boost::shared_ptr<ServiceStreamer> ServiceStreamerPtr;
#endif
|