Example #1
0
        /*-- direct creation --*/

        public json_type(int o)
        {
            type    = object_type.@int;
            i_value = new json_int(o);
        }
Example #2
0
        /*--- generic constructors --*/

        public json_type(json_int o)
        {
            type    = object_type.@int;
            i_value = o;
        }