oddělení generatoru od readeru
This commit is contained in:
34
include/reader/licReaderELC2.h
Normal file
34
include/reader/licReaderELC2.h
Normal file
@@ -0,0 +1,34 @@
|
||||
#ifndef ELC2_READER__H
|
||||
#define ELC2_READER__H
|
||||
|
||||
#include "utils.h"
|
||||
#include "licenceCommon.h"
|
||||
#include "licenceELC2.h"
|
||||
#include "SDCard.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace Reader
|
||||
{
|
||||
class Licence2 : public LicenceELC2
|
||||
{
|
||||
public:
|
||||
LicenceInfo21 licenceInfo;
|
||||
|
||||
|
||||
Licence2();
|
||||
~Licence2();
|
||||
Licence2(LicenceIdentification &licIdentification);
|
||||
|
||||
|
||||
bool readLicence(LicenceInfoGeneral *licences);
|
||||
|
||||
int getDataPointsCount(int protocolId);
|
||||
bool getLicenceInfo(void *ptr);
|
||||
bool getLicenceItemInfo(int protocolId, void *returnItemStructure);
|
||||
|
||||
private:
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user