Null.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 
8 #include <etk/types.hpp>
9 #include <ejson/Value.hpp>
10 
11 namespace ejson {
15  class Null : public ejson::Value {
16  public:
26  Null(const ejson::Null& _obj);
30  Null();
36  ejson::Null& operator= (const ejson::Null& _obj);
37  };
38 }
39 
40 
41 
Null()
Constructor.
ejson namespace containing all function for JSON interpretor
Definition: Array.hpp:12
ejson::Null & operator=(const ejson::Null &_obj)
Copy constructor.
Basic main object of all json elements.
Definition: Value.hpp:31
ejson Null interface: &#39;null&#39;.
Definition: Null.hpp:15