blob: 197b1ef5e644951bf8135ac596ddf7731c86ccf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef CONF_TREE_H
#define CONF_TREE_H
#include <stdint.h>
/**
*
*/
class ConfTree
{
public:
ConfTree();
virtual ~ConfTree();
private:
};
#endif
|