]> Dogcows Code - chaz/openbox/blob - otk/otk.cc
Add the "obsetroot" tool. Use it to set the root background.
[chaz/openbox] / otk / otk.cc
1 #include "display.hh"
2 #include "timer.hh"
3 #include "renderstyle.hh"
4 #include "property.hh"
5
6 namespace otk {
7
8 void initialize()
9 {
10 new Display();
11 Timer::initialize();
12 RenderColor::initialize();
13 RenderStyle::initialize();
14 Property::initialize();
15 }
16
17 void destroy()
18 {
19 RenderStyle::destroy();
20 RenderColor::destroy();
21 Timer::destroy();
22 delete display;
23 }
24
25 }
This page took 0.037711 seconds and 4 git commands to generate.