diff options
author | thlo <t.lohmar@gmx.de> | 2013-01-19 14:19:23 +0100 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-01-19 14:19:23 +0100 |
commit | fb4fde7ef4f0297790dae8c430246bba3d08e368 (patch) | |
tree | 97a7a4ddb9673f40d8d4ae76e3d7908001b7b76e /vdr-smarttvweb/stvw_cfg.h | |
parent | 6df64d9467f59f6a5d8ae6aa6b177db8084beb43 (diff) | |
download | vdr-plugin-smarttvweb-fb4fde7ef4f0297790dae8c430246bba3d08e368.tar.gz vdr-plugin-smarttvweb-fb4fde7ef4f0297790dae8c430246bba3d08e368.tar.bz2 |
time query parameter. isnew in recordings.xml. Fixes.
Diffstat (limited to 'vdr-smarttvweb/stvw_cfg.h')
-rwxr-xr-x[-rw-r--r--] | vdr-smarttvweb/stvw_cfg.h | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/vdr-smarttvweb/stvw_cfg.h b/vdr-smarttvweb/stvw_cfg.h index 3b440b1..1f124fb 100644..100755 --- a/vdr-smarttvweb/stvw_cfg.h +++ b/vdr-smarttvweb/stvw_cfg.h @@ -32,19 +32,8 @@ using namespace std; -class cResumeEntry { - public: - string mTitle; - time_t mStartTime; // title is not unique - int mResume; - time_t mLastViewed; - - friend ostream& operator<<(ostream& out, const cResumeEntry& o) { - out << "mTitle= " << o.mTitle << " mStartTime= " << o.mStartTime << " mResume= " << o.mResume << endl; - return out; - }; -}; +/* class cResumes { public: cResumes(string t) : mDevice(t) {}; @@ -53,7 +42,7 @@ class cResumes { string mDevice; }; - +*/ class cSmartTvConfig { private: string mConfigDir; @@ -73,7 +62,7 @@ class cSmartTvConfig { void readConfig(); - cResumes* readConfig(string); + // cResumes* readConfig(string); string getLogFile() { return mLogFile; }; string getMediaFolder() { return mMediaFolder; }; |