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.
nmWATI/Include/mGui/mGuiTree/TreeWx/TreeNodeDescBase.h

25 lines
493 B
C++

#pragma once
#include "mModuleDefines.h"
#include "mGuiTree_global.h"
/// @brief 暂时是最低级别Child的描述
class M_GUI_TREE_EXPORT TreeNodeDescBase
{
public:
TreeNodeDescBase();
~TreeNodeDescBase();
bool isDataNode();
public:
QString m_sName; //节点名称
QString m_sTable; //节点对应的表名
QString m_sIcon; //节点对应的图标名
MainTreeNodeType m_oType; //类型
};
typedef QVector<TreeNodeDescBase*> vecTreeNodeDescPtr;