File: configuration.cpp

package info (click to toggle)
higan 094-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,780 kB
  • ctags: 15,643
  • sloc: cpp: 103,963; ansic: 659; makefile: 531; sh: 25
file content (17 lines) | stat: -rwxr-xr-x 438 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
struct Settings : Configuration::Document {
  string path;
  string geometry;

  Settings() {
    Configuration::Node node;
    node.append(path = userpath(), "Path");
    node.append(geometry = "64,64,480,600", "Geometry");
    append(node, "Settings");
    directory::create({configpath(), "ananke/"});
    load({configpath(), "ananke/settings.bml"});
  }

  ~Settings() {
    save({configpath(), "ananke/settings.bml"});
  }
} config;