summaryrefslogtreecommitdiff
path: root/infosatepg.h
blob: d458ac0b0cc0430ed18b966a11e15e6272543829 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * infosatepg.h: A plugin for the Video Disk Recorder
 *
 * See the README file for copyright information and how to reach the author.
 *
 * $Id$
 */

#ifndef __infosatepg_h_
#define __infosatepg_h_

#include "global.h"
#include "status.h"
#include "process.h"

static const char *VERSION        = "0.0.12";
static const char *DESCRIPTION    = trNOOP("Read EPG info from infosat");

class cPluginInfosatepg : public cPlugin {
private:
  // Add any member variables or functions you may need here.
  cGlobalInfosatepg *global;
  cStatusInfosatepg *statusMonitor;
  cProcessInfosatepg *process;
  int pmac;
public:
  cPluginInfosatepg(void);
  virtual ~cPluginInfosatepg();
  virtual const char *Version(void) { return VERSION; }
  virtual const char *Description(void) { return tr(DESCRIPTION); }
  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 void MainThreadHook(void);
  virtual cString Active(void);
  virtual time_t WakeupTime(void);
  virtual const char *MainMenuEntry(void);
  virtual cOsdObject *MainMenuAction(void);
  virtual cMenuSetupPage *SetupMenu(void);
  virtual bool SetupParse(const char *Name, const char *Value);
  virtual bool Service(const char *Id, void *Data = NULL);
  virtual const char **SVDRPHelpPages(void);
  virtual cString SVDRPCommand(const char *Command, const char *Option, int &ReplyCode);
  };

#endif