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