| 24 | |
| 25 | |
| 26 | Object::Object(int options): |
| 27 | _preserveInsOrder((options & Poco::JSON_PRESERVE_KEY_ORDER) != 0), |
| 28 | _escapeUnicode((options & Poco::JSON_ESCAPE_UNICODE) != 0), |
| 29 | _modified(false) |
| 30 | { |
| 31 | } |
| 32 | |
| 33 | |
| 34 | Object::Object(const Object& other) : _values(other._values), |
no test coverage detected