Beispiel #1
0
bool JsonIn::skip_member()
{
    skip_string();
    skip_pair_separator();
    skip_value();
    return skip_separator();
}
Beispiel #2
0
void JsonIn::skip_member()
{
    skip_string();
    skip_pair_separator();
    skip_value();
    skip_separator();
}
Beispiel #3
0
std::string JsonIn::get_member_name()
{
    // get the name
    std::string s = get_string();
    // eat any whitespace
    eat_whitespace();
    // skip the separator
    skip_pair_separator();
    // done
    return s;
}
Beispiel #4
0
std::string JsonIn::get_member_name()
{
    std::string s = get_string();
    skip_pair_separator();
    return s;
}