aboutsummaryrefslogtreecommitdiff
path: root/src/tests/confpair.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-11-21 05:17:23 +0000
committerMike Buland <eichlan@xagasoft.com>2006-11-21 05:17:23 +0000
commit737b1aee54da9ff45a4fb6eb7e636eff9019128e (patch)
tree927462af3c8301f1ccac44ed7a5ee8c52dc77b29 /src/tests/confpair.cpp
parent76e04d54d648395ea5e9884882350f3e1a39a086 (diff)
downloadlibbu++-737b1aee54da9ff45a4fb6eb7e636eff9019128e.tar.gz
libbu++-737b1aee54da9ff45a4fb6eb7e636eff9019128e.tar.bz2
libbu++-737b1aee54da9ff45a4fb6eb7e636eff9019128e.tar.xz
libbu++-737b1aee54da9ff45a4fb6eb7e636eff9019128e.zip
Adding a new config-system that should be easy to make derive from xml. Or just
used in general. The base unit, the confpair is a template, so if things go right, you should be able to use this to store any kind of config data in a nice and easily accessable way.
Diffstat (limited to 'src/tests/confpair.cpp')
-rw-r--r--src/tests/confpair.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/tests/confpair.cpp b/src/tests/confpair.cpp
new file mode 100644
index 0000000..8e03730
--- /dev/null
+++ b/src/tests/confpair.cpp
@@ -0,0 +1,14 @@
1#include "confpair.h"
2#include <iostream>
3
4using namespace std;
5
6int main()
7{
8 ConfPair<bool> p1("DebugMode");
9 p1.value() = true;
10 cout << p1.value() << "\n";
11 p1.value() = false;
12 cout << p1.value() << "\n";
13}
14