Oddělení ELC1 generatoru a readeru
This commit is contained in:
@@ -1,9 +1,38 @@
|
||||
#ifndef ELC2_GENERATOR__H
|
||||
#define ELC2_GENERATOR__H
|
||||
#ifndef ELC2_GENERATOR_H
|
||||
#define ELC2_GENERATOR_H
|
||||
|
||||
#include "utils.h"
|
||||
#include "licenceCommon.h"
|
||||
#include "licenceELC2.h"
|
||||
#include "SDCard.h"
|
||||
#include "pugixml.hpp"
|
||||
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace Generator
|
||||
{
|
||||
|
||||
class Licence2 : public LicenceELC2
|
||||
{
|
||||
|
||||
public:
|
||||
Licence2();
|
||||
Licence2(string cid, string csd, pugi::xml_document * xmlDoc);
|
||||
~Licence2();
|
||||
|
||||
string cid = "";
|
||||
string csd = "";
|
||||
pugi::xml_document *xmlDoc;
|
||||
string projectDescription = "";
|
||||
|
||||
|
||||
bool createLicence();
|
||||
void getHeader();
|
||||
string getVersion(int middleVersion);
|
||||
bool processInputConfiguration();
|
||||
void getLicenceItems();
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user