X-Git-Url: http://git.tdb.fi/?p=libs%2Fgltk.git;a=blobdiff_plain;f=source%2Froot.h;fp=source%2Froot.h;h=c71d50d6f7577d4ec3e710149c70115d50850ae3;hp=0fe624f4c4e3f5d03e7fab70ee4bc00d594cd20e;hb=d10d1de6d17c285c63d7b3cea549017aaa1ddb01;hpb=83f553a382ce554951594de85e4fd7b854305463 diff --git a/source/root.h b/source/root.h index 0fe624f..c71d50d 100644 --- a/source/root.h +++ b/source/root.h @@ -57,15 +57,15 @@ public: Root(Resources &, Graphics::Window *, Input::Keyboard *, Input::Mouse *, Input::Touchscreen * = nullptr); virtual ~Root(); - virtual const char *get_class() const { return "root"; } + const char *get_class() const override { return "root"; } Resources &get_resources() const { return resources; } virtual unsigned get_width() const { return geom.w; } virtual unsigned get_height() const { return geom.h; } void tick(); - virtual void setup_frame(GL::Renderer &); - virtual void render(GL::Renderer &, GL::Tag = GL::Tag()) const; + void setup_frame(GL::Renderer &) override; + void render(GL::Renderer &, GL::Tag = GL::Tag()) const override; private: bool button_press_event(unsigned); @@ -79,8 +79,8 @@ private: void get_touch(unsigned, int &, int &); void update_camera(); - virtual void on_size_change(); - virtual void on_child_added(Widget &); + void on_size_change() override; + void on_child_added(Widget &) override; }; } // namespace GLtk