amuse/Editor/EditorWidget.hpp

15 lines
234 B
C++
Raw Normal View History

#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