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(QWidget *parent = nullptr, int type = 0);
- void initWidgets();
- void initLayout();
- signals:
- private:
- CMindView *m_mind = nullptr;
- };
- #endif // INDEXSYSTEMWIDGET_H
|