// SPDX-License-Identifier: Apache-2.0 // Copyright Contributors to the OpenTimelineIO project #pragma once #include "opentimelineio/serializableObject.h" #include "opentimelineio/version.h" #include #include namespace opentimelineio { namespace OPENTIMELINEIO_VERSION { bool deserialize_json_from_string( std::string const& input, std::any* destination, ErrorStatus* error_status = nullptr); bool deserialize_json_from_file( std::string const& file_name, std::any* destination, ErrorStatus* error_status = nullptr); }} // namespace opentimelineio::OPENTIMELINEIO_VERSION