mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
пилотная рабочая версия с кодами dm/pm
This commit is contained in:
@@ -15,12 +15,16 @@ public:
|
||||
Module();
|
||||
~Module();
|
||||
|
||||
int getID(){ return ID; };
|
||||
ModuleType getType(){ return type; };
|
||||
void setParentModule(Module* parentModule){ this->parentModule = parentModule; };
|
||||
Module* getModuleByID(int id);
|
||||
|
||||
protected:
|
||||
ModuleType type;
|
||||
Module* parentModule;
|
||||
int ID;
|
||||
static int lastID;
|
||||
};
|
||||
|
||||
|
||||
@@ -39,8 +43,11 @@ public:
|
||||
public:
|
||||
void initialize(QString modelIdentCode, QString pmIssuer, QString pmNumber, QString pmVolume);
|
||||
void setLangStructRus(QString title);
|
||||
pmLangStruct getLangStructRus();
|
||||
void setLangStructEng(QString title);
|
||||
void addChildModule(Module* childModule);
|
||||
QList<Module*> getListChildModules();
|
||||
QString pmCode();
|
||||
|
||||
private:
|
||||
QString modelIdentCode;
|
||||
@@ -84,7 +91,9 @@ public:
|
||||
QString infoCodeVariant,
|
||||
QString itemLocationCode);
|
||||
void setLangStructRus(QString techName, QString infoName, QString pdf, QString bookmark, QString xml);
|
||||
dmLangStruct getLangStructRus();
|
||||
void setLangStructEng(QString techName, QString infoName, QString pdf, QString bookmark, QString xml);
|
||||
QString dmCode();
|
||||
|
||||
private:
|
||||
QString modelIdentCode;
|
||||
|
||||
Reference in New Issue
Block a user