namespace boost {
namespace property_tree {
namespace json_parser {
template<typename Ptree>
void read_json(std::basic_istream< typename Ptree::key_type::value_type > &,
Ptree &);
template<typename Ptree>
void read_json(const std::string &, Ptree &,
const std::locale & = std::locale());
template<typename Ptree>
void write_json(std::basic_ostream< typename Ptree::key_type::value_type > &,
const Ptree &, bool = true);
template<typename Ptree>
void write_json(const std::string &, const Ptree &,
const std::locale & = std::locale(), bool = true);
}
}
}