39#if defined(_WIN32) && !defined(__MINGW32__)
40#pragma warning( disable : 4290 )
72 CepGenerator(QString xmlFilename, QString devDirectoryName);
83 CepGenerator(std::unique_ptr<cepcoreschema::Cep> domCep, QString devDirectoryName);
197 std::unique_ptr<cepcoreschema::Cep> domCep;
200 QFileInfo xmlFileName;
203 QDir devDirectoryName;
206 QString cepDirectoryName;
209 QVector<ExtensionGenerator*> extensions;
This class contains the entry points to generate CEP.
Definition CepGenerator.h:62
virtual void generateReadme()
Generate Readme File.
Definition CepGenerator.cpp:310
void setDevDirectoryName(QString devDirectoryName)
Where to generate the CEP directories and files.
Definition CepGenerator.cpp:95
virtual void generateCopyright()
Generate copyright file.
Definition CepGenerator.cpp:283
virtual void generateDirectoryTree()
Create the general directory tree (the same for every CEP).
Definition CepGenerator.cpp:120
virtual void generateLibrariesDirectory()
Generate the Libraries directory.
Definition CepGenerator.cpp:396
virtual void generateApplicationsDirectory()
Generate the Applications directory.
Definition CepGenerator.cpp:370
virtual void generateActionsDirectory()
Generate the Actions directory.
Definition CepGenerator.cpp:356
virtual void createActionExtensionDoms()
Create the ActionExtensionDom if needed and call the appropriate methods to generate the action exten...
Definition CepGenerator.cpp:424
void serializeManifest(QString fileName="")
Serialize the manifest ie serialize the domCep to a std::string.
Definition CepGenerator.cpp:161
virtual void createViewersExtensionDoms()
Create the ViewersDom if needed and call the appropriate methods to generate the viewer extensions.
Definition CepGenerator.cpp:479
virtual void generateExtensions()
Definition CepGenerator.cpp:497
virtual void generateViewersDirectory()
Generate the Libraries directory.
Definition CepGenerator.cpp:410
void process()
call all methods to generate the CEP from the DomTree.
Definition CepGenerator.cpp:504
void setXmlFileName(QString xmlFileName)
Set the input XML CEP manifest (ant check its xml validity)
Definition CepGenerator.cpp:85
virtual void generateGlobalCMakeLists()
Generate CMakeLists file.
Definition CepGenerator.cpp:208
virtual void copyFindCamiTK()
Generate the FindCamiTK file.
Definition CepGenerator.cpp:346
virtual void createLibrarieDoms()
Create the LibrariesDom if needed and call the appropriate methods to generate the libraries.
Definition CepGenerator.cpp:460
virtual void createComponentExtensionDoms()
Create the ComponentExtensionDom if needed and call the appropriate methods to generate the component...
Definition CepGenerator.cpp:442
CepGenerator()
Create an empty CepGenerator.
Definition CepGenerator.cpp:62
virtual ~CepGenerator()
Definition CepGenerator.cpp:79
virtual void setLicence()
Set the licence ine the licence variable to be included later in the generated files.
Definition CepGenerator.cpp:260
void createDomTree()
Create the DOM attribute domCep from the XML CEP manifest.
Definition CepGenerator.cpp:106
virtual void generateComponentsDirectory()
Generate the Components directory.
Definition CepGenerator.cpp:383
Common abstract class to generate extensions.
Definition cepgenerator/ExtensionGenerator.h:49
Definition ActionExtensionGenerator.h:36