#ifndef INMODELCREATOR_H #define INMODELCREATOR_H #include #include class InModelCreator : public QObject { Q_OBJECT public: explicit InModelCreator(QObject *parent = 0); inline QStandardItemModel *getStandardItemModel() {return _model;} void getIncludes(QSet &list); QString getModelsDoc(); QString getModelsDeclaration(); QString getCreateInResultModelListProtectedContent(); QString getComputeContent(); private: QStandardItemModel *_model; }; #endif // INMODELCREATOR_H