* \brief Serialize property value to JSON. * * The base GenericProperty template does not support JSON serialization. * Concrete specializations (via mitkDefineGenericProperty) override this * to provide actual serialization. * * \return Always \c false in the base template. */
| 85 | * \return Always \c false in the base template. |
| 86 | */ |
| 87 | bool ToJSON(nlohmann::json&) const override |
| 88 | { |
| 89 | return false; |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * \brief Deserialize property value from JSON. |
no outgoing calls