summaryrefslogtreecommitdiff
path: root/p2pvr/daemon/recorder.h
diff options
context:
space:
mode:
Diffstat (limited to 'p2pvr/daemon/recorder.h')
-rw-r--r--p2pvr/daemon/recorder.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/p2pvr/daemon/recorder.h b/p2pvr/daemon/recorder.h
index 6effb07..215732f 100644
--- a/p2pvr/daemon/recorder.h
+++ b/p2pvr/daemon/recorder.h
@@ -3,7 +3,6 @@
#include <IceUtil/Timer.h>
#include <Ice/ObjectAdapter.h>
-#include <options.h>
#include <p2pvr.h>
#include <mutex>
#include "serviceStreamer.h"
@@ -13,21 +12,10 @@
namespace P2PVR {
class DLL_PUBLIC RecorderI : public Recorder {
public:
- class Options : public IceTray::Options {
- public:
- Options();
-
- ICETRAY_OPTIONS_DECLARE;
-
- std::string extension;
- std::string muxerCommand;
- };
-
typedef std::vector<IceUtil::TimerTaskPtr> Pendings;
class Current {
public:
- RawDataClientPrx muxer;
RawDataClientPrx store;
ServiceStreamerPtr stream;
SchedulePtr schedule;
@@ -53,7 +41,6 @@ class DLL_PUBLIC RecorderI : public Recorder {
Pendings pendingRecordings;
std::mutex lock;
- IceTray::OptionsResolver<Options> options;
static IceTray::Logging::LoggerPtr logger;
};
}