diff options
author | git-vdr <herrlado@gmail.com> | 2011-10-04 01:48:22 +0200 |
---|---|---|
committer | git-vdr <herrlado@gmail.com> | 2011-10-04 01:48:22 +0200 |
commit | a0959febada19fdbc0b1375b91c0876cb68b301d (patch) | |
tree | 4c2005ac2e509fd9f077e9cca5cd8239b902e358 /vdr-vdrmanager/helpers.h | |
parent | 063b971d168fda709a7624767c1f6a37e8529949 (diff) | |
download | vdr-manager-a0959febada19fdbc0b1375b91c0876cb68b301d.tar.gz vdr-manager-a0959febada19fdbc0b1375b91c0876cb68b301d.tar.bz2 |
initial support for recordings
Diffstat (limited to 'vdr-vdrmanager/helpers.h')
-rw-r--r-- | vdr-vdrmanager/helpers.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vdr-vdrmanager/helpers.h b/vdr-vdrmanager/helpers.h index 7fc38d4..a9d9e94 100644 --- a/vdr-vdrmanager/helpers.h +++ b/vdr-vdrmanager/helpers.h @@ -15,6 +15,7 @@ public: static string GetChannels(string args); static string GetChannelEvents(string args); static string GetTimeEvents(string args); + static string GetRecordings(string args); static string SetTimer(string args); static string SearchEvents(string args); static string ToUpper(string text); @@ -24,6 +25,7 @@ private: static string SafeCall(string (*)(string), string arg); static string SafeCall(string (*)(string, string), string arg1, string arg2); static string GetTimersIntern(); + static string GetRecordingsIntern(); static string GetChannelsIntern(string wantedChannels); static string GetEventsIntern(string wantedChannels, string when); static string SetTimerIntern(string args); @@ -32,6 +34,7 @@ private: static bool IsWantedChannel(cChannel * channel, string wantedChannels); static bool IsWantedTime(time_t when, cEvent * event); static string MapSpecialChars(string text); - static string ToText(cEvent * event); + static string ToText(const cEvent * event); static string ToText(cTimer * timer); + static string ToText(cRecording * recording); }; |