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