Computer Assisted Medical Intervention Tool Kit  version 5.1
 
Loading...
Searching...
No Matches
ComponentGenerator.h
Go to the documentation of this file.
1/*****************************************************************************
2 * $CAMITK_LICENCE_BEGIN$
3 *
4 * CamiTK - Computer Assisted Medical Intervention ToolKit
5 * (c) 2001-2023 Univ. Grenoble Alpes, CNRS, Grenoble INP, TIMC, 38000 Grenoble, France
6 *
7 * Visit http://camitk.imag.fr for more information
8 *
9 * This file is part of CamiTK.
10 *
11 * CamiTK is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * CamiTK is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public License
21 * version 3 along with CamiTK. If not, see <http://www.gnu.org/licenses/>.
22 *
23 * $CAMITK_LICENCE_END$
24 ****************************************************************************/
25#ifndef COMPONENTGENERATOR_H
26#define COMPONENTGENERATOR_H
27
28#if defined(_WIN32) && !defined(__MINGW32__) // MSVC only
29#pragma warning( disable : 4290 )
30#endif // MSVC only
31
32// includes from STL
33#include <set>
34// includes from Qt
35#include <QString>
36#include <QVector>
37#include <QStringList>
38
39namespace cepcoreschema {
40class Component;
41}
42
44
45
54
55public:
56 ComponentGenerator(QString xmlFileName, QString licence);
57 ComponentGenerator(cepcoreschema::Component& domComponent, QString licence);
58
60
61 void generateFiles(QString directoryName);
62
63 QString getClassName() const;
64
65 QStringList getSuffixesList();
66
67private:
69 void createFromDom(cepcoreschema::Component& dom);
70
71 void writeHFile(QString directoryName);
72 void writeCFile(QString directoryName);
73
74 QString getParentClassName();
75
77 QString name;
78
79 QString description;
80
81 QString className;
82
83 QString representation;
84
85 QString licence;
86
87 QVector<ParameterGenerator*> componentProperties;
88
89 QStringList suffixesList;
90
91};
92
93#endif
Create a component.
Definition ComponentGenerator.h:53
~ComponentGenerator()=default
void generateFiles(QString directoryName)
Definition ComponentGenerator.cpp:103
QString getClassName() const
Definition ComponentGenerator.cpp:95
ComponentGenerator(cepcoreschema::Component &domComponent, QString licence)
QStringList getSuffixesList()
Definition ComponentGenerator.cpp:99
A component is something that composed something and could also be a part of something.
Definition modeling/libraries/pml/Component.h:48
Generate parameters.
Definition ParameterGenerator.h:48
Definition ActionExtensionGenerator.h:36