mirror of https://github.com/AxioDL/amuse.git
15 lines
234 B
C++
15 lines
234 B
C++
|
#ifndef AMUSE_EDITOR_WIDGET_HPP
|
||
|
#define AMUSE_EDITOR_WIDGET_HPP
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
class EditorWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit EditorWidget(QWidget* parent = Q_NULLPTR);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //AMUSE_EDITOR_WIDGET_HPP
|