| 6 | template <typename T> bool is (const Json::Value &val) { return false; } |
| 7 | template <typename T> T as (const Json::Value &val); |
| 8 | template <typename T> T get (const Json::Value &val, const std::string &key, const T &default_) { return default_; } |
| 9 | |
| 10 | #define define_helpers(type, is_func, as_func) \ |
| 11 | template<> inline bool is<type> (const Json::Value &val) { return val.is_func(); } \ |
no outgoing calls
no test coverage detected