Sha256: b17b8f4c2c29e90fc5df312297960ce3114875d9b2a19682eacc6209043cfb68
Contents?: true
Size: 1.04 KB
Versions: 7
Compression:
Stored size: 1.04 KB
Contents
// Copyright (c) 2018-2022 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/json/ #ifndef TAO_JSON_MSGPACK_FROM_FILE_HPP #define TAO_JSON_MSGPACK_FROM_FILE_HPP #include <utility> #include "../events/to_value.hpp" #include "../events/transformer.hpp" #include "../internal/filesystem.hpp" #include "events/from_file.hpp" namespace tao::json::msgpack { template< template< typename... > class Traits, template< typename... > class... Transformers > [[nodiscard]] basic_value< Traits > basic_from_file( const json::internal::filesystem::path& path ) { json::events::transformer< json::events::to_basic_value< Traits >, Transformers... > consumer; events::from_file( consumer, path ); return std::move( consumer.value ); } template< template< typename... > class... Transformers > [[nodiscard]] value from_file( const json::internal::filesystem::path& path ) { return basic_from_file< traits, Transformers... >( path ); } } // namespace tao::json::msgpack #endif
Version data entries
7 entries across 7 versions & 1 rubygems