From: Mikko Rasa Date: Fri, 7 Oct 2016 12:37:11 +0000 (+0300) Subject: Inherit View from sigc::trackable X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=commitdiff_plain;h=d886d08441f45448ba98166f7dd15d35baf24905 Inherit View from sigc::trackable It connects to the resize signal of Window. --- diff --git a/source/view.h b/source/view.h index 0dd63895..81d7e051 100644 --- a/source/view.h +++ b/source/view.h @@ -2,6 +2,7 @@ #define MSP_GL_VIEW_H_ #include +#include #include #include @@ -15,7 +16,7 @@ class Renderable; /** Manages the presentation of rendering results on the screen. */ -class View +class View: public sigc::trackable { private: Graphics::Window &window;