Add nomenclature model

Add class NomenclatureModel witch is used with QetGraphicsTableItem.
Add ProjectDataBase  class, the goal of this class is to store all
information of a project at an instant T to easilly find it. This class
is still in development and not provide all information that she should.
This commit is contained in:
Claveau Joshua
2020-03-28 16:33:00 +01:00
parent fb7cc6fd3e
commit 66abfbe180
13 changed files with 542 additions and 43 deletions

View File

@@ -112,6 +112,14 @@ QETProject::~QETProject() {
qDeleteAll(m_diagrams_list);
}
/**
* @brief QETProject::uuid
* @return the uuid of this project
*/
QUuid QETProject::uuid() const {
return m_uuid;
}
/**
* @brief QETProject::init
*/