This commit is contained in:
2024-05-14 14:51:30 +02:00
parent 63d8178b4b
commit ca93b3369f
21 changed files with 1037 additions and 96 deletions

View File

@@ -1,9 +1,38 @@
#ifndef ELC3_GENERATOR__H
#define ELC3_GENERATOR__H
#ifndef ELC3_GENERATOR_H
#define ELC3_GENERATOR_H
#include "utils.h"
#include "licenceCommon.h"
#include "licenceELC3.h"
#include "pugixml.hpp"
using namespace std;
namespace Generator
{
class Licence3 : public LicenceELC3
{
public:
Licence3();
Licence3(string uuid, pugi::xml_document * xmlDoc);
~Licence3();
string cid = "";
string csd = "";
pugi::xml_document *xmlDoc;
string projectDescription = "";
bool createLicence();
private:
void getHeader();
string getVersion(int middleVersion);
bool processInputConfiguration();
void getLicenceItems();
};
}
#endif