summaryrefslogtreecommitdiff
path: root/otk/otk.cc
blob: 130e3b77df661c2924ce53fef8a13b13b1d7509a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "display.hh"
#include "timer.hh"
#include "renderstyle.hh"
#include "property.hh"

namespace otk {

void initialize()
{
  new Display();
  Timer::initialize();
  RenderColor::initialize();
  RenderStyle::initialize();
  Property::initialize();
}

void destroy()
{
  RenderStyle::destroy();
  RenderColor::destroy();
  Timer::destroy();
  delete display;
}

}