easy to implement/use Json string to class (De-)Serializer
to use the library, just perform the following steps:
- include the "Serializable.h" in the header files of the class you want to make serializable
- add simple_json::Serializable to the base classes of the class
- use the "addMember(memberName, member)" to add the members you want to include in the serialization
- use the inherited public member functions "fromString(pointer to json formatted string)" for deserialization and "toString()" to serialize the class instance
- arrays have to be of the type JsonParser::Vector to be able to work
- every mapped class needs to be derived from "simple_json::Serializable"