mirror of
https://github.com/AxioDL/amuse.git
synced 2025-08-06 12:15:53 +00:00
16 lines
303 B
C++
16 lines
303 B
C++
#ifndef AMUSE_SAMPLE_EDITOR_HPP
|
|
#define AMUSE_SAMPLE_EDITOR_HPP
|
|
|
|
#include "EditorWidget.hpp"
|
|
|
|
class SampleEditor : public EditorWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SampleEditor(QWidget* parent = Q_NULLPTR);
|
|
bool loadData(ProjectModel::SampleNode* node);
|
|
};
|
|
|
|
|
|
#endif //AMUSE_SAMPLE_EDITOR_HPP
|