mirror of https://github.com/AxioDL/amuse.git
15 lines
256 B
C++
15 lines
256 B
C++
|
#ifndef AMUSE_SONG_GROUP_EDITOR_HPP
|
||
|
#define AMUSE_SONG_GROUP_EDITOR_HPP
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
class SongGroupEditor : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit SongGroupEditor(QWidget* parent = Q_NULLPTR);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //AMUSE_SONG_GROUP_EDITOR_HPP
|