valueType.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 
8 #include <ostream>
9 
10 namespace ejson {
14  enum class valueType {
15  unknow,
16  value,
17  document,
18  array,
19  object,
20  string,
21  number,
22  null,
23  boolean,
24  };
26  std::ostream& operator <<(std::ostream& _os, enum valueType _obj);
27 }
28 
the element true or false
might be an error ...
might be an error ...
te element [ ... ]
all the file main access
the element "..."
ejson namespace containing all function for JSON interpretor
Definition: Array.hpp:12
The element 1111.2222.
valueType
Type of the JSON elements.
Definition: valueType.hpp:14
the element null
the element { ... }