GNOME Bugzilla – Bug 392950
Wrapper Class For GTimer missing
Last modified: 2007-01-12 20:56:14 UTC
Hi! I'm missing a wrapper class for the GTimer. This would be really easy to implement, i just started like this: class MyGTimer { public: MyGTimer() : timer_(g_timer_new()) { } ~MyGTimer() { g_timer_destroy(timer_); } gdouble elapsed() { return g_timer_elapsed(timer_, NULL); } private: GTimer* timer_; };
> Hi! I'm missing a wrapper class for the GTimer. It's there: http://www.gtkmm.org/docs/glibmm-2.4/docs/reference/html/classGlib_1_1Timer.html
Oh, i couldn't find it in the class overview. sry...
Closing as INVALID.
Just a last question: Is it normal that this class isn't in the overview? http://gtkmm.org/docs/gtkmm-2.4/docs/reference/html/classes.html
That's the Gtk namespace. For Glib, it's http://gtkmm.org/docs/glibmm-2.4/docs/reference/html/namespaceGlib.html
Well i clicked Full -> All Classes. It shows all namespaces except of Glib. Maybe it should be added their?