123456789101112131415161718192021222324252627 |
- #ifndef INDEXSYSTEMWIDGET_H
- #define INDEXSYSTEMWIDGET_H
- #include "EvalWidget.h"
- class CMindView;
- /**
- * @brief The IndexSystemWidget class
- * 指标体系
- */
- class IndexSystemWidget : public EvalWidget
- {
- Q_OBJECT
- public:
- explicit IndexSystemWidget(ProjectInfo *proj, int type = 0, QWidget *parent = nullptr);
- void initWidgets();
- void initLayout();
- signals:
- private:
- CMindView *m_mindView = nullptr;
- };
- #endif // INDEXSYSTEMWIDGET_H
|