Problems including jsonCpp headers
I'm trying to implement the jsoncpp libraries in my C++ code, I wrote a simple piece of code just to try it out, and it's not even compiling. #include <stdio.h> #include <stdlib.h> #include <stddef.h> #include <string.h> #ifndef json_included #define json_included #include "jsoncpp\include\json\json.h" #endif //#include "json\jsonC\json.h" int main(int argc, char **argv) { std::string example = "{\"array\":[\"item1\", \"item2\"], \"not an array\":\"asdf\"}"; Json::Value value; Json::Reader reader; bool parsed = reader.parse(example, value, false); std::cout << parsed; return 0; } The errors i