31 lines
534 B
C++
31 lines
534 B
C++
#ifndef PLC_LICENCE31_H
|
|
#define PLC_LICENCE31_H
|
|
|
|
#include <stdint.h>
|
|
#include <iostream>
|
|
#include <vector>
|
|
#include "utils.h"
|
|
#include "licenceCommon.h"
|
|
|
|
using namespace std;
|
|
|
|
class LicenceELC31
|
|
{
|
|
LicData lData;
|
|
bool processInputConfiguration();
|
|
LicenceIdentification lIdentification;
|
|
|
|
|
|
public:
|
|
LicenceELC31();
|
|
~LicenceELC31();
|
|
LicenceELC31(LicData & licData);
|
|
LicenceELC31(LicenceIdentification & licIdentification);
|
|
void createLicence();
|
|
void readLicence();
|
|
int getDataPointsCount(int protocolId);
|
|
};
|
|
|
|
#endif
|
|
|