#ifndef JASON_SPIRIT_WRITER #define JASON_SPIRIT_WRITER /* Copyright (c) 2007-2009 John W Wilkinson This source code can be used for any purpose as long as this comment is retained. */ // json spirit version 3.00 #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif #include "json_spirit_value.h" #include <iostream> namespace json_spirit { // functions to convert JSON Values to text, // the "formatted" versions add whitespace to format the output nicely void write ( const Value& value, std::ostream& os ); void write_formatted( const Value& value, std::ostream& os ); std::string write ( const Value& value ); std::string write_formatted( const Value& value ); #ifndef BOOST_NO_STD_WSTRING std::wstring write ( const wValue& value ); std::wstring write_formatted( const wValue& value ); void write ( const wValue& value, std::wostream& os ); void write_formatted( const wValue& value, std::wostream& os ); #endif } #endif
By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The MIT License