summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-04-07 18:27:53 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-04-07 18:27:53 +0200
commit56250e3af8c4ae61f0e8325605744ee0a2ec4864 (patch)
treead9bd6435edf9d0645744e72d88355a96aebc6da /services
parentd825d700ebb95d73f8e760f12bf5d1dfb002e28f (diff)
downloadvdr-plugin-tvguide-56250e3af8c4ae61f0e8325605744ee0a2ec4864.tar.gz
vdr-plugin-tvguide-56250e3af8c4ae61f0e8325605744ee0a2ec4864.tar.bz2
Update services/epgsearch.h
Diffstat (limited to 'services')
-rw-r--r--services/epgsearch.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/services/epgsearch.h b/services/epgsearch.h
index 712dfff..0354480 100644
--- a/services/epgsearch.h
+++ b/services/epgsearch.h
@@ -154,7 +154,11 @@ public:
struct Epgsearch_services_v1_0 {
// in/out
+#if __cplusplus < 201103L
+ std::auto_ptr<cServiceHandler> handler;
+#else
std::unique_ptr<cServiceHandler> handler;
+#endif
};
// Data structures for service "Epgsearch-services-v1.1"
@@ -169,7 +173,11 @@ public:
struct Epgsearch_services_v1_1 {
// in/out
+#if __cplusplus < 201103L
+ std::auto_ptr<cServiceHandler> handler;
+#else
std::unique_ptr<cServiceHandler_v1_1> handler;
+#endif
};
// Data structures for service "Epgsearch-services-v1.2"
@@ -184,7 +192,11 @@ public:
struct Epgsearch_services_v1_2 {
// in/out
+#if __cplusplus < 201103L
+ std::auto_ptr<cServiceHandler> handler;
+#else
std::unique_ptr<cServiceHandler_v1_2> handler;
+#endif
};
#endif