Sha256: 9f9db26cb8079899363f92c689385e52bd33b4d92fa6312185895526ef59809b
Contents?: true
Size: 583 Bytes
Versions: 16
Compression:
Stored size: 583 Bytes
Contents
// Copyright (c) 2018-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/json/ #include <iostream> #include <tao/json.hpp> int main( int argc, char** argv ) { if( argc != 2 ) { std::cerr << "usage: " << argv[ 0 ] << " file.ubjson" << std::endl; std::cerr << " parses the ubjson file and writes it to stdout as pretty jaxn" << std::endl; return 1; } tao::json::jaxn::events::to_pretty_stream consumer( std::cout, 3 ); tao::json::ubjson::events::from_file( consumer, argv[ 1 ] ); return 0; }
Version data entries
16 entries across 16 versions & 1 rubygems