diff options
author | chriszero <zerov83@gmail.com> | 2015-02-14 18:53:11 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-02-14 18:53:11 +0100 |
commit | e412257abf8de4576a180351d24ff07589fa630c (patch) | |
tree | ed020de5c8257545eca66e96997984731ac60379 /PlexHelper.h | |
parent | 20fefdd3f341d6e7f6b15e4926bf5569aa1943d5 (diff) | |
download | vdr-plugin-plex-e412257abf8de4576a180351d24ff07589fa630c.tar.gz vdr-plugin-plex-e412257abf8de4576a180351d24ff07589fa630c.tar.bz2 |
Various Fixes0.1.0
Bump Version to frist beta.
Diffstat (limited to 'PlexHelper.h')
-rw-r--r-- | PlexHelper.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/PlexHelper.h b/PlexHelper.h index e42fc1d..0df6eaf 100644 --- a/PlexHelper.h +++ b/PlexHelper.h @@ -1,14 +1,17 @@ #ifndef PLEXHELPER_H #define PLEXHELPER_H +#include <Poco/Net/HTTPRequest.h> + namespace plexclient { class PlexHelper { public: - PlexHelper(); - ~PlexHelper(); + static void AddHttpHeader(Poco::Net::HTTPRequest& request); +private: + PlexHelper() {}; }; |