mirror of
https://github.com/AxioDL/amuse.git
synced 2025-08-11 22:49:07 +00:00
15 lines
311 B
C++
15 lines
311 B
C++
#ifndef AMUSE_SOUND_MACRO_EDITOR_HPP
|
|
#define AMUSE_SOUND_MACRO_EDITOR_HPP
|
|
|
|
#include "EditorWidget.hpp"
|
|
|
|
class SoundMacroEditor : public EditorWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SoundMacroEditor(ProjectModel::SoundMacroNode* node, QWidget* parent = Q_NULLPTR);
|
|
};
|
|
|
|
|
|
#endif //AMUSE_SOUND_MACRO_EDITOR_HPP
|