Add initial project structure with essential files including .gitignore, application resources, and various model and view components for the application. Implemented asynchronous parsing support and database structure checks.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#ifndef TITLEINSCRIPTIONTYPES_H
|
||||
#define TITLEINSCRIPTIONTYPES_H
|
||||
|
||||
#include <QString>
|
||||
|
||||
// Структура для поля надписи (базовая версия)
|
||||
struct TitleInscriptionField {
|
||||
int number;
|
||||
QString name;
|
||||
QString description;
|
||||
QString currentValue;
|
||||
QString projectParamName;
|
||||
bool isCustom;
|
||||
};
|
||||
|
||||
// Расширенная структура для поля надписи (с флагом обязательности)
|
||||
struct TitleInscriptionFieldExtended : public TitleInscriptionField {
|
||||
bool isRequired;
|
||||
};
|
||||
|
||||
#endif // TITLEINSCRIPTIONTYPES_H
|
||||
Reference in New Issue
Block a user