diff options
author | lado <herrlado@gmail.com> | 2011-10-20 14:38:27 +0200 |
---|---|---|
committer | lado <herrlado@gmail.com> | 2011-10-20 14:38:27 +0200 |
commit | d9bd167fe3f2c7ba17056f1b2cec0c9af6b5bcf1 (patch) | |
tree | 79e414954bf2c913d1b21416b21aeda288e85cb1 /vdr-vdrmanager/helpers.h | |
parent | 7f28775e74babd24aba04fc3f5cf2f0e118d2ad5 (diff) | |
download | vdr-manager-d9bd167fe3f2c7ba17056f1b2cec0c9af6b5bcf1.tar.gz vdr-manager-d9bd167fe3f2c7ba17056f1b2cec0c9af6b5bcf1.tar.bz2 |
added support for deleting a recording
Diffstat (limited to 'vdr-vdrmanager/helpers.h')
-rw-r--r-- | vdr-vdrmanager/helpers.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vdr-vdrmanager/helpers.h b/vdr-vdrmanager/helpers.h index b5cd08e..4da5cca 100644 --- a/vdr-vdrmanager/helpers.h +++ b/vdr-vdrmanager/helpers.h @@ -16,6 +16,7 @@ public: static string GetChannelEvents(string args); static string GetTimeEvents(string args); static string GetRecordings(string args); + static string DelRecording(string args); static string SetTimer(string args); static string SearchEvents(string args); static string ToUpper(string text); @@ -29,6 +30,7 @@ private: static string GetRecordingsIntern(); static string GetChannelsIntern(string wantedChannels); static string GetEventsIntern(string wantedChannels, string when); + static string DelRecordingIntern(string index); static string SetTimerIntern(string args); static string SearchEventsIntern(string wantedChannels, string pattern); static bool IsWantedEvent(cEvent * event, string pattern); |