Selaa lähdekoodia

Document JsonArray and JsonObject

Daniele Bartolini 10 vuotta sitten
vanhempi
sitoutus
996fbaaf6a
1 muutettua tiedostoa jossa 7 lisäystä ja 0 poistoa
  1. 7 0
      src/core/json/json_types.h

+ 7 - 0
src/core/json/json_types.h

@@ -29,7 +29,14 @@ struct JsonValueType
 	};
 };
 
+/// Array of pointers to json-encoded strings.
+///
+/// @ingroup JSON
 typedef Array<const char*> JsonArray;
+
+/// Map from key to pointers to json-encoded strings.
+///
+/// @ingroup JSON
 typedef Map<FixedString, const char*> JsonObject;
 
 } // namespace crown