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