Created
February 12, 2014 16:04
-
-
Save bithavoc/8958431 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
JSON type enumeration | |
*/ | |
enum JSON_TYPE : byte | |
{ | |
/// Indicates the type of a $(D JSONValue). | |
STRING, | |
INTEGER, /// ditto | |
UINTEGER,/// ditto | |
FLOAT, /// ditto | |
OBJECT, /// ditto | |
ARRAY, /// ditto | |
TRUE, /// ditto | |
FALSE, /// ditto | |
NULL /// ditto | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment