| 79 | } |
| 80 | |
| 81 | struct IsCheck { |
| 82 | /// Initialize all checks to \c false by default. |
| 83 | IsCheck(); |
| 84 | |
| 85 | bool isObject_{false}; |
| 86 | bool isArray_{false}; |
| 87 | bool isBool_{false}; |
| 88 | bool isString_{false}; |
| 89 | bool isNull_{false}; |
| 90 | |
| 91 | bool isInt_{false}; |
| 92 | bool isInt64_{false}; |
| 93 | bool isUInt_{false}; |
| 94 | bool isUInt64_{false}; |
| 95 | bool isIntegral_{false}; |
| 96 | bool isDouble_{false}; |
| 97 | bool isNumeric_{false}; |
| 98 | }; |
| 99 | |
| 100 | void checkConstMemberCount(const Json::Value& value, |
| 101 | unsigned int expectedCount); |
no outgoing calls
no test coverage detected