mirror of
https://github.com/AxioDL/amuse.git
synced 2025-08-09 13:39:09 +00:00
16 lines
293 B
C++
16 lines
293 B
C++
#ifndef AMUSE_CURVE_EDITOR_HPP
|
|
#define AMUSE_CURVE_EDITOR_HPP
|
|
|
|
#include "EditorWidget.hpp"
|
|
|
|
class CurveEditor : public EditorWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CurveEditor(QWidget* parent = Q_NULLPTR);
|
|
bool loadData(ProjectModel::CurveNode* node);
|
|
};
|
|
|
|
|
|
#endif //AMUSE_CURVE_EDITOR_HPP
|