#ifndef CONF_TREE_H #define CONF_TREE_H #include <stdint.h> /** * */ class ConfTree { public: ConfTree(); virtual ~ConfTree(); private: }; #endif