26 #ifndef CEPGENERATOR_H
27 #define CEPGENERATOR_H
39 #if defined(_WIN32) && !defined(__MINGW32__)
40 #pragma warning( disable : 4290 )
197 std::unique_ptr<cepcoreschema::Cep>
domCep;
This class contains the entry points to generate CEP.
Definition: CepGenerator.h:62
virtual void generateReadme()
Generate Readme File.
Definition: CepGenerator.cpp:307
void setDevDirectoryName(QString devDirectoryName)
Where to generate the CEP directories and files.
Definition: CepGenerator.cpp:94
virtual void generateCopyright()
Generate copyright file.
Definition: CepGenerator.cpp:280
QFileInfo xmlFileName
Where to find the original XML description of the CEP.
Definition: CepGenerator.h:200
virtual void generateDirectoryTree()
Create the general directory tree (the same for every CEP).
Definition: CepGenerator.cpp:119
QDir devDirectoryName
Where to store the produced files.
Definition: CepGenerator.h:203
virtual void generateLibrariesDirectory()
Generate the Libraries directory.
Definition: CepGenerator.cpp:388
QVector< ExtensionGenerator * > extensions
Action or Component Extensions.
Definition: CepGenerator.h:209
virtual void generateApplicationsDirectory()
Generate the Applications directory.
Definition: CepGenerator.cpp:364
virtual void generateActionsDirectory()
Generate the Actions directory.
Definition: CepGenerator.cpp:351
virtual void createActionExtensionDoms()
Create the ActionExtensionDom if needed and call the appropriate methods to generate the action exten...
Definition: CepGenerator.cpp:414
QString cepDirectoryName
Subdirectory where the CEP sources will be stored (updated when generating the directory tree)
Definition: CepGenerator.h:206
void serializeManifest(QString fileName="")
Serialize the manifest ie serialize the domCep to a std::string.
Definition: CepGenerator.cpp:160
std::unique_ptr< cepcoreschema::Cep > domCep
XML DOM Element create by CodeSynthesis This cep instance contains all of the informations of the xml...
Definition: CepGenerator.h:197
virtual void createViewersExtensionDoms()
Create the ViewersDom if needed and call the appropriate methods to generate the viewer extensions.
Definition: CepGenerator.cpp:469
virtual void generateExtensions()
Definition: CepGenerator.cpp:487
virtual void generateViewersDirectory()
Generate the Libraries directory.
Definition: CepGenerator.cpp:401
void process()
call all methods to generate the CEP from the DomTree.
Definition: CepGenerator.cpp:494
void setXmlFileName(QString xmlFileName)
Set the input XML CEP manifest (ant check its xml validity)
Definition: CepGenerator.cpp:84
virtual void generateGlobalCMakeLists()
Generate CMakeLists file.
Definition: CepGenerator.cpp:207
virtual void copyFindCamiTK()
Generate the FindCamiTK file.
Definition: CepGenerator.cpp:342
virtual void createLibrarieDoms()
Create the LibrariesDom if needed and call the appropriate methods to generate the libraries.
Definition: CepGenerator.cpp:450
virtual void createComponentExtensionDoms()
Create the ComponentExtensionDom if needed and call the appropriate methods to generate the component...
Definition: CepGenerator.cpp:432
CepGenerator()
Create an empty CepGenerator.
Definition: CepGenerator.cpp:61
virtual ~CepGenerator()
Definition: CepGenerator.cpp:78
virtual void setLicence()
Set the licence ine the licence variable to be included later in the generated files.
Definition: CepGenerator.cpp:258
QString licence
overall licence of the CEP
Definition: CepGenerator.h:212
void createDomTree()
Create the DOM attribute domCep from the XML CEP manifest.
Definition: CepGenerator.cpp:105
virtual void generateComponentsDirectory()
Generate the Components directory.
Definition: CepGenerator.cpp:376
Common abstract class to generate extensions.
Definition: ExtensionGenerator.h:49
Definition: ActionExtensionGenerator.h:36