Skip to content

Commit

Permalink
support enum
Browse files Browse the repository at this point in the history
construct enum type to basic_json (proxy by int type)
```
    enum { t = 0 };
    json  j = json::array();
    j.push_back(t);

    j.push_back(json::object({
         {"game_type", t}
    }));
```
  • Loading branch information
likebeta committed May 9, 2015
1 parent 9f9d293 commit 91aee10
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,11 @@ class basic_json
inline basic_json(const number_integer_t& value)
: m_type(value_t::number_integer), m_value(value)
{}

/// create an int number to support enum type (implicit)
inline basic_json(int int_enum)
: m_type(value_t::number_integer), m_value((NumberIntegerType)int_enum)
{}

/// create an integer number (implicit)
template<typename T, typename
Expand Down

0 comments on commit 91aee10

Please sign in to comment.