mirror of
https://projects.vdr-developer.org/git/vdr-plugin-tvguide.git
synced 2023-10-05 15:01:48 +02:00
Update services/epgsearch.h
This commit is contained in:
parent
d825d700eb
commit
56250e3af8
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user