From 737b1aee54da9ff45a4fb6eb7e636eff9019128e Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 21 Nov 2006 05:17:23 +0000 Subject: 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. --- src/conftree.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/conftree.h (limited to 'src/conftree.h') diff --git a/src/conftree.h b/src/conftree.h new file mode 100644 index 0000000..197b1ef --- /dev/null +++ b/src/conftree.h @@ -0,0 +1,19 @@ +#ifndef CONF_TREE_H +#define CONF_TREE_H + +#include + +/** + * + */ +class ConfTree +{ +public: + ConfTree(); + virtual ~ConfTree(); + +private: + +}; + +#endif -- cgit v1.2.3