diff options
author | thlo <smarttv640@gmail.com> | 2013-04-29 20:26:53 +0200 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-04-29 20:26:53 +0200 |
commit | 61b3d20a8cc245a8d099fce097373843ceed5774 (patch) | |
tree | ab499437db93214fb753fe303af58d6d2baf16fd /mngurls.h | |
parent | 037e0f4ecf781aa8a5819ec036d3cfbb852768a7 (diff) | |
download | vdr-plugin-smarttvweb-61b3d20a8cc245a8d099fce097373843ceed5774.tar.gz vdr-plugin-smarttvweb-61b3d20a8cc245a8d099fce097373843ceed5774.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; |