diff options
author | Johann Friedrichs <johann.friedrichs@web.de> | 2017-07-30 13:00:22 +0200 |
---|---|---|
committer | Frank Neumann <fnu@yavdr.org> | 2017-07-30 13:00:22 +0200 |
commit | c804b85247f2ae8e3ba412b2e266bc3fed51d1ae (patch) | |
tree | 57c4b46a37bb9d8d8ab8b8ef2cfcf69bdcaf0546 /svdrpclient.h | |
parent | 65aabbfb1f7ffd79e739f77360ff8f21cf70fb50 (diff) | |
download | vdr-plugin-epgsearch-c804b85247f2ae8e3ba412b2e266bc3fed51d1ae.tar.gz vdr-plugin-epgsearch-c804b85247f2ae8e3ba412b2e266bc3fed51d1ae.tar.bz2 |
Use namespace for svdrpclient.
Diffstat (limited to 'svdrpclient.h')
-rw-r--r-- | svdrpclient.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/svdrpclient.h b/svdrpclient.h index d76a1f6..e9533fe 100644 --- a/svdrpclient.h +++ b/svdrpclient.h @@ -31,6 +31,8 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #define SVDRPDISCONNECT 221 #define CMDSUCCESS 250 +namespace epgsSVDRP { + class cSVDRPClient { private: int sock; @@ -142,4 +144,6 @@ public: static const char *SVDRPSendCmd; }; +}; + #endif |