mirror of
https://github.com/AxioDL/amuse.git
synced 2025-08-15 08:29:14 +00:00
15 lines
268 B
C++
15 lines
268 B
C++
#ifndef AMUSE_ADSR_EDITOR_HPP
|
|
#define AMUSE_ADSR_EDITOR_HPP
|
|
|
|
#include "EditorWidget.hpp"
|
|
|
|
class ADSREditor : public EditorWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ADSREditor(ProjectModel::ADSRNode* node, QWidget* parent = Q_NULLPTR);
|
|
};
|
|
|
|
|
|
#endif //AMUSE_ADSR_EDITOR_HPP
|