summaryrefslogtreecommitdiff
path: root/p2pvr/lib/serviceStreamer.h
blob: bfed89a2cb910c404034e5f8001ea27dcf991446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef SERVICESTREAMER_H
#define SERVICESTREAMER_H

#include "serviceStreamerCore.h"
#include <visibility.h>

namespace P2PVR {
class DLL_PUBLIC ServiceStreamer : public ServiceStreamerCore {
	public:
		ServiceStreamer(int sid, RawDataClientPrx, const DevicesPrx & d, const SIPrx & s, const Ice::ObjectAdapterPtr & a);
		~ServiceStreamer();

		void Start();

	private:
		SIPrx si;
};

typedef boost::shared_ptr<ServiceStreamer> ServiceStreamerPtr;
}

#endif