| 54 | } |
| 55 | |
| 56 | void GeneralizedTransform::wrap(Json::Value const &transform) { |
| 57 | Json::Value newLayer{transform}; |
| 58 | if (newLayer.isObject()) { |
| 59 | container().insert(begin(), newLayer); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | bool GeneralizedTransform::empty() const { return container().empty(); } |
| 64 |