From 50fadc990c20b78f11081c216235aedb13ba47c6 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Mon, 31 May 2021 23:52:53 +0200 Subject: [PATCH] fix compile w/o ci Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/589d37b6561649f76a3936ca3112cd475590e45b Author: vanhofen Date: 2021-05-31 (Mon, 31 May 2021) Origin message was: ------------------ - fix compile w/o ci ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- include/ca.h | 6 ++++++ include/ca_ci.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/ca.h b/include/ca.h index 36505ee..3d4e0a7 100644 --- a/include/ca.h +++ b/include/ca.h @@ -96,6 +96,8 @@ class cCA { private: cCA(void); + bool zapitReady; + public: uint32_t GetNumberCISlots(void); uint32_t GetNumberSmartCardSlots(void); @@ -135,6 +137,10 @@ class cCA { return; }; + /// start pollthread after zapit is ready + virtual void setZapitReady(){zapitReady = true;}; + virtual bool getZapitReady(){return zapitReady;}; + /// Virtual destructor virtual ~cCA(); }; diff --git a/include/ca_ci.h b/include/ca_ci.h index c212e63..f77ad51 100644 --- a/include/ca_ci.h +++ b/include/ca_ci.h @@ -271,7 +271,7 @@ class cCA { private: /// Static instance of the CA module -// static cCA *inst; + //static cCA *inst; /// Private constructor (singleton method) cCA(void); /// Private data for the CA module