mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-26 23:13:16 +02:00
- fix compile w/o ci
Signed-off-by: Thilo Graf <dbt@novatux.de> Why virtual?
This commit is contained in:
@@ -96,6 +96,8 @@ class cCA
|
|||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
cCA(void);
|
cCA(void);
|
||||||
|
bool zapitReady;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
uint32_t GetNumberCISlots(void);
|
uint32_t GetNumberCISlots(void);
|
||||||
uint32_t GetNumberSmartCardSlots(void);
|
uint32_t GetNumberSmartCardSlots(void);
|
||||||
@@ -135,6 +137,10 @@ class cCA
|
|||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
};
|
};
|
||||||
|
/// start pollthread after zapit is ready
|
||||||
|
virtual void setZapitReady(){zapitReady = true;};
|
||||||
|
virtual bool getZapitReady(){return zapitReady;};
|
||||||
|
/// Virtual destructor
|
||||||
virtual ~cCA();
|
virtual ~cCA();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -271,7 +271,7 @@ class cCA
|
|||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
/// Static instance of the CA module
|
/// Static instance of the CA module
|
||||||
// static cCA *inst;
|
//static cCA *inst;
|
||||||
/// Private constructor (singleton method)
|
/// Private constructor (singleton method)
|
||||||
cCA(void);
|
cCA(void);
|
||||||
/// Private data for the CA module
|
/// Private data for the CA module
|
||||||
|
Reference in New Issue
Block a user