File graphics.hpp¶
File List > gui > magnum > graphics.hpp
Go to the documentation of this file
#ifndef ROBOT_DART_GUI_MAGNUM_GRAPHICS_HPP
#define ROBOT_DART_GUI_MAGNUM_GRAPHICS_HPP
#include <robot_dart/gui/magnum/base_graphics.hpp>
namespace robot_dart {
namespace gui {
namespace magnum {
class Graphics : public BaseGraphics<GlfwApplication> {
public:
Graphics(const GraphicsConfiguration& configuration = default_configuration()) : BaseGraphics<GlfwApplication>(configuration) {}
~Graphics() {}
void set_simu(RobotDARTSimu* simu) override;
static GraphicsConfiguration default_configuration();
};
} // namespace magnum
} // namespace gui
} // namespace robot_dart
#endif