diff options
author | thlo <smarttv640@gmail.com> | 2013-05-11 15:45:00 +0200 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-05-11 15:45:00 +0200 |
commit | f547b104261cab5394a515c3f2a87396b68a7c11 (patch) | |
tree | dc05639fb53cff2c37963fad7dad06a20366adb7 /httpclient.h | |
parent | 85eb824baf4031444b5375f2e8c44f33bfbbaf5b (diff) | |
download | vdr-plugin-smarttvweb-f547b104261cab5394a515c3f2a87396b68a7c11.tar.gz vdr-plugin-smarttvweb-f547b104261cab5394a515c3f2a87396b68a7c11.tar.bz2 |
OsdStatusMessage added.
Diffstat (limited to 'httpclient.h')
-rw-r--r-- | httpclient.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/httpclient.h b/httpclient.h index 000eaa8..d30528e 100644 --- a/httpclient.h +++ b/httpclient.h @@ -105,8 +105,18 @@ class cHttpInfoClient : public cHttpClientBase { protected: string getMsgBody(int ); - string mBody; }; +class cHttpMesgPushClient : public cHttpClientBase { + public: + cHttpMesgPushClient(int, int, int, SmartTvServer*, string peer, string mesg); + virtual ~cHttpMesgPushClient(); + + protected: + string getMsgBody(int ); + string mMesg; +}; + + #endif |