Method to set the internal value (for json_value::to_string())
| 663 | |
| 664 | // Method to set the internal value (for json_value::to_string()) |
| 665 | void set_value(const fl::shared_ptr<json_value>& value) FL_NOEXCEPT { |
| 666 | mValue = value; |
| 667 | } |
| 668 | |
| 669 | // Public method to access to_string_native for json_value::to_string() |
| 670 | fl::string to_string_native_public() const FL_NOEXCEPT { return to_string_native(); } |