mirror of
https://github.com/AxioDL/amuse.git
synced 2025-08-05 11:45:44 +00:00
15 lines
252 B
C++
15 lines
252 B
C++
#ifndef AMUSE_KEYMAP_EDITOR_HPP
|
|
#define AMUSE_KEYMAP_EDITOR_HPP
|
|
|
|
#include "EditorWidget.hpp"
|
|
|
|
class KeymapEditor : public EditorWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit KeymapEditor(QWidget* parent = Q_NULLPTR);
|
|
};
|
|
|
|
|
|
#endif //AMUSE_KEYMAP_EDITOR_HPP
|