My Project
 
Loading...
Searching...
No Matches
bpt.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <boost/property_tree/ptree.hpp>
6
7// boost property tree
8class BPT{
9 static BPT* _inst;
10 static BPT* inst();
11
12 BPT();
13 ~BPT();
14
15 boost::property_tree::ptree pt;
16public:
17 static std::string getText(const std::string& key);
18};
static std::string getText(const std::string &key)
Definition bpt.cpp:26