![]() |
CMSC23700 Common Code Library
Support code for CS23700 programming projects
|
#include <vector>#include <string>#include <map>Go to the source code of this file.
Classes | |
| class | JSON::Value |
| class | JSON::Object |
| JSON objects. More... | |
| class | JSON::Array |
| JSON arrays. More... | |
| class | JSON::Number |
| class | JSON::String |
| class | JSON::Bool |
| class | JSON::Null |
Namespaces | |
| JSON | |
Enumerations | |
| enum | JSON::Type { JSON::T_OBJECT, JSON::T_ARRAY, JSON::T_NUMBER, JSON::T_STRING, JSON::T_BOOL, JSON::T_NULL } |
| the types of JSON values More... | |
Functions | |
| Value * | JSON::ParseFile (std::string filename) |
| std::ostream & | JSON::operator<< (std::ostream &s, Value *v) |