mirror of
https://github.com/AxioDL/amuse.git
synced 2025-08-11 06:29:23 +00:00
15 lines
270 B
C++
15 lines
270 B
C++
#ifndef AMUSE_SONG_GROUP_EDITOR_HPP
|
|
#define AMUSE_SONG_GROUP_EDITOR_HPP
|
|
|
|
#include "EditorWidget.hpp"
|
|
|
|
class SongGroupEditor : public EditorWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SongGroupEditor(QWidget* parent = Q_NULLPTR);
|
|
};
|
|
|
|
|
|
#endif //AMUSE_SONG_GROUP_EDITOR_HPP
|