diff options
author | Johann Friedrichs <johann.friedrichs@web.de> | 2021-04-26 17:36:37 +0200 |
---|---|---|
committer | Johann Friedrichs <johann.friedrichs@web.de> | 2021-04-26 17:36:37 +0200 |
commit | fc309e3841d204554dba001b6f01fcc4c4cc0fc6 (patch) | |
tree | 525437b3f778025f2caeb4765aaec2e8a79783de /conflictcheck.h | |
parent | 2844b5dce57c48d49693406b12f857f36f358d37 (diff) | |
download | vdr-plugin-epgsearch-fc309e3841d204554dba001b6f01fcc4c4cc0fc6.tar.gz vdr-plugin-epgsearch-fc309e3841d204554dba001b6f01fcc4c4cc0fc6.tar.bz2 |
improved conflictcheck for encrypted channels
(added internalcam-handling)
Diffstat (limited to 'conflictcheck.h')
-rw-r--r-- | conflictcheck.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/conflictcheck.h b/conflictcheck.h index 4abc88d..6da8972 100644 --- a/conflictcheck.h +++ b/conflictcheck.h @@ -115,6 +115,14 @@ public: prio = std::max(prio, (*it)->timer->Priority()); return prio; }; + bool HasInternalCam(void) { + if (device) return device->HasInternalCam(); + else return false; + } + int NumProvidedSystems(void) const { + if (device) return device->NumProvidedSystems(); + else return 1; + } int CardIndex(void) const { if (device) return device->CardIndex(); else return devicenr; |