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.
31 lines
558 B
C++
31 lines
558 B
C++
#ifndef CFDPropertyWidget_h
|
|
#define CFDPropertyWidget_h
|
|
|
|
#include <QtCore/QtGlobal>
|
|
#include <QDebug>
|
|
#include <CFDStructMainAPI.h>
|
|
|
|
namespace GUI
|
|
{
|
|
|
|
class PropertyWidget;
|
|
class QTreeWidgetItem;
|
|
|
|
class CFDStructMAINAPI CFDPropertyWidget : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
// public:
|
|
// CFDPropertyWidget(PropertyWidget* m_PropertyWidget);
|
|
// public slots:
|
|
// void changePropertyWidget(QTreeWidgetItem *item, int column);
|
|
|
|
// private:
|
|
// PropertyWidget* m_PropertyWidget;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|