mirror of
https://github.com/AxioDL/amuse.git
synced 2025-06-30 18:33:47 +00:00
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
|