summaryrefslogtreecommitdiff
path: root/zaphistory.h
diff options
context:
space:
mode:
authorMartin Schirrmacher <vdr.zaphistory@schirrmacher.eu>2013-08-15 21:24:18 +0200
committerMartin Schirrmacher <vdr.zaphistory@schirrmacher.eu>2013-08-15 21:24:18 +0200
commit111b0cc69414d8025a66b3325a65d7286be87df7 (patch)
tree13e4ec5b46e6607456e7015b0aa1365994f35a8e /zaphistory.h
downloadvdr-plugin-zaphistory-111b0cc69414d8025a66b3325a65d7286be87df7.tar.gz
vdr-plugin-zaphistory-111b0cc69414d8025a66b3325a65d7286be87df7.tar.bz2
initial commit
Diffstat (limited to 'zaphistory.h')
-rw-r--r--zaphistory.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/zaphistory.h b/zaphistory.h
new file mode 100644
index 0000000..3b56031
--- /dev/null
+++ b/zaphistory.h
@@ -0,0 +1,38 @@
+/*
+ * zaphistory.h: A plugin for the Video Disk Recorder
+ *
+ * See the README file for copyright information and how to reach the author.
+ *
+ * $Id$
+ */
+
+#ifndef __ZAPHISTORY_H
+#define __ZAPHISTORY_H
+
+#include <vdr/plugin.h>
+#include "zaplist.h"
+#include "monitor.h"
+
+
+class cPluginZaphistory : public cPlugin {
+private:
+ // Add any member variables or functions you may need here.
+ cZapHistoryMonitor *monitor;
+public:
+ cPluginZaphistory(void);
+ virtual ~cPluginZaphistory();
+ virtual const char *Version(void);
+ virtual const char *Description(void);
+ virtual const char *CommandLineHelp(void);
+ virtual bool ProcessArgs(int argc, char *argv[]);
+ virtual bool Initialize(void);
+ virtual bool Start(void);
+ virtual void Stop(void);
+ virtual void Housekeeping(void);
+ virtual const char *MainMenuEntry(void);
+ virtual cOsdObject *MainMenuAction(void);
+ virtual cMenuSetupPage *SetupMenu(void);
+ virtual bool SetupParse(const char *Name, const char *Value);
+ };
+
+#endif