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