You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWTAI-Platform/Include/mData/mProjectManager/DataModels/ZxDataWellSub.h

34 lines
718 B
C++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#pragma once
#include "ZxDataObjectStr.h"
// 该类暂未启用原本是Well各个子数据的父类但由于各子数据的父类难以统一故暂时舍弃
class M_PROJECTMANAGER_EXPORT ZxDataWellSub
: public ZxDataObjectStr
{
ZX_DECLARE_DYNAMIC
public:
ZxDataWellSub();
ZxDataWellSub(const ZxDataWellSub &other);
virtual ~ZxDataWellSub();
ZxDataWellSub &operator = (const ZxDataWellSub &other);
bool operator == (const ZxDataWellSub &other) const;
bool operator != (const ZxDataWellSub &other) const;
public:
// 接口
virtual ZxDataObject* clone();
virtual QString type() const;
// Icon
virtual QIcon getIcon(bool expanded) const;
};