mirror of https://github.com/AxioDL/amuse.git
16 lines
324 B
C++
16 lines
324 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);
|
|
bool loadData(ProjectModel::SongGroupNode* node);
|
|
};
|
|
|
|
|
|
#endif //AMUSE_SONG_GROUP_EDITOR_HPP
|