2017-11-28 04:46:27 +00:00
|
|
|
#ifndef OBJECTPROPERTIESFRAME_H
|
|
|
|
#define OBJECTPROPERTIESFRAME_H
|
|
|
|
|
|
|
|
#include <QFrame>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class ObjectPropertiesFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ObjectPropertiesFrame : public QFrame
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-09-15 00:37:44 +01:00
|
|
|
explicit ObjectPropertiesFrame(QWidget *parent = nullptr);
|
2017-11-28 04:46:27 +00:00
|
|
|
~ObjectPropertiesFrame();
|
|
|
|
|
|
|
|
public:
|
|
|
|
Ui::ObjectPropertiesFrame *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // OBJECTPROPERTIESFRAME_H
|