- fix compile w/o ci

Signed-off-by: Thilo Graf <dbt@novatux.de>

Why virtual?
This commit is contained in:
svenhoefer
2021-05-31 23:52:53 +02:00
committed by Thilo Graf
parent a76297bc70
commit 6e1a7d3bdd
2 changed files with 7 additions and 1 deletions

View File

@@ -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();
};

View File

@@ -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