2023-05-08 06:32:41 +00:00
|
|
|
|
#ifndef CURVEMODEL_H
|
|
|
|
|
#define CURVEMODEL_H
|
|
|
|
|
|
|
|
|
|
#include "ModelBase.h"
|
|
|
|
|
#include "Common.h"
|
|
|
|
|
|
2024-03-20 07:33:49 +00:00
|
|
|
|
namespace LAMPCAEDesigner
|
2023-05-08 06:32:41 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
class CurveModel : public ModelBase
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
CurveModel(QString nameEng, QString nameChn, QString iconName, QObject *parent);
|
|
|
|
|
~CurveModel();
|
|
|
|
|
virtual ModelBase* CreateChildModel(QTreeWidgetItem* parentTreeItem);
|
|
|
|
|
QList<QString> getNameUsedList();
|
|
|
|
|
ModelBase* CreateChildModel(QString fileName, QObject* parent);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|