]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/monitor.cpp
Refactor storage of monitor settings
[libs/gui.git] / source / graphics / monitor.cpp
1 #include "monitor.h"
2
3 using namespace std;
4
5 namespace Msp {
6 namespace Graphics {
7
8 Monitor::Monitor():
9         index(0),
10         next_left(0),
11         next_right(0)
12 { }
13
14
15 Monitor::Settings::Settings():
16         mode(0),
17         rotation(ROTATE_NORMAL),
18         x(0),
19         y(0)
20 { }
21
22 } // namespace Graphics
23 } // namespace Msp