mirror of
https://github.com/AxioDL/amuse.git
synced 2025-07-04 04:05:54 +00:00
15 lines
284 B
C++
15 lines
284 B
C++
#ifndef AMUSE_LAYERS_EDITOR_HPP
|
|
#define AMUSE_LAYERS_EDITOR_HPP
|
|
|
|
#include "EditorWidget.hpp"
|
|
|
|
class LayersEditor : public EditorWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit LayersEditor(ProjectModel::LayersNode* node, QWidget* parent = Q_NULLPTR);
|
|
};
|
|
|
|
|
|
#endif //AMUSE_LAYERS_EDITOR_HPP
|