Hi GrandaThePanda,
Yes you've found a spot where we don't have full source documentation comments. Even worse it appears Doxygen doesn't pick up the enum values for some reason. I'm guessing because of how we have them formatted in the source code. Anyway here is the actual code:
Steve
Yes you've found a spot where we don't have full source documentation comments. Even worse it appears Doxygen doesn't pick up the enum values for some reason. I'm guessing because of how we have them formatted in the source code. Anyway here is the actual code:
/// <summary>
/// This enumeration represents the various kinds of JSON values.
/// </summary>
enum value_type { Number, Boolean, String, Object, Array, Null };
So you can see all the values map to the json types. I'm currently playing around with the source code so it gets picked up by Doxygen.Steve