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 /httpclient.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 'httpclient.h')
-rw-r--r-- | httpclient.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/httpclient.h b/httpclient.h index b5a39ea..000eaa8 100644 --- a/httpclient.h +++ b/httpclient.h @@ -87,4 +87,26 @@ class cHttpYtPushClient : public cHttpClientBase { }; +class cHttpCfgPushClient : public cHttpClientBase { + public: + cHttpCfgPushClient(int, int, int, SmartTvServer*, string peer); + virtual ~cHttpCfgPushClient(); + + protected: + string getMsgBody(int ); + + string mServerAddress; +}; + +class cHttpInfoClient : public cHttpClientBase { + public: + cHttpInfoClient(int, int, int, SmartTvServer*, string peer, string body); + virtual ~cHttpInfoClient(); + + protected: + string getMsgBody(int ); + + string mBody; +}; + #endif |