![]() |
FIMS
v0.8.1
|
A simple JSON parsing and generation library. More...
#include <cctype>#include <iostream>#include <fstream>#include <map>#include <sstream>#include <string>#include <algorithm>#include <vector>Go to the source code of this file.
Classes | |
| class | fims::JsonValue |
| class | fims::JsonParser |
Typedefs | |
| using | fims::JsonObject = std::map< std::string, JsonValue > |
| using | fims::JsonArray = std::vector< JsonValue > |
Enumerations | |
| enum | fims::JsonValueType { fims::Null = 0 , fims::Number , fims::String , fims::Bool , fims::Object , fims::JArray } |
A simple JSON parsing and generation library.
This library provides classes and functions for parsing JSON strings and generating JSON data structures.
| using fims::JsonArray = typedef std::vector<JsonValue> |
Alias for a JSON array, containing a sequence of JSON values.
| using fims::JsonObject = typedef std::map<std::string, JsonValue> |
Alias for a JSON object, mapping strings to JSON values.