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.
23 lines
356 B
C++
23 lines
356 B
C++
#pragma once
|
|
|
|
#include <QTreeWidgetItem>
|
|
|
|
#include "Defines.h"
|
|
#include "iGuiConfig_global.h"
|
|
|
|
class X_GUI_CONFIG_EXPORT TreeItemConfig : public QTreeWidgetItem
|
|
{
|
|
public:
|
|
|
|
TreeItemConfig(QTreeWidget* parent = 0);
|
|
~TreeItemConfig();
|
|
|
|
public slots:
|
|
|
|
void setCwt(ConfigWxType o);
|
|
ConfigWxType getCwt();
|
|
|
|
public:
|
|
ConfigWxType m_oCwt;
|
|
};
|