blob: 230764ec4d201f8165a9b1ea87a2dad00ba8e7f2 (
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"
#include <visibility.h>
class DLL_PUBLIC ServiceStreamer : public ServiceStreamerCore {
public:
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
|