diff options
author | thlo <t.lohmar@gmx.de> | 2013-04-29 20:26:53 +0200 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-04-29 20:26:53 +0200 |
commit | 5a8bf27d89d82d0bb1ea0939c74c1f122f6f6ae3 (patch) | |
tree | ab499437db93214fb753fe303af58d6d2baf16fd /mngurls.h | |
parent | 7fe1953d5bb204ec97e8f5032b0f7ec5d0e1cbda (diff) | |
download | vdr-plugin-smarttvweb-5a8bf27d89d82d0bb1ea0939c74c1f122f6f6ae3.tar.gz vdr-plugin-smarttvweb-5a8bf27d89d82d0bb1ea0939c74c1f122f6f6ae3.tar.bz2 |
Added Delete YT Urls, Get notification for starting and finishing recordings, resume fix, query recording info of a single item.
Diffstat (limited to 'mngurls.h')
-rw-r--r-- | mngurls.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -41,7 +41,7 @@ class cManageUrls { virtual ~cManageUrls(); void appendEntry (string type, string guid); - void deleteEntry(string type, string guid); + bool deleteEntry(string type, string guid); size_t size(); sUrlEntry* getEntry(int index); @@ -52,6 +52,7 @@ class cManageUrls { Log* mLog; + string mFilename; ofstream* mFile; vector<sUrlEntry*> mEntries; |