Click here to Skip to main content
15,867,785 members
Articles / Web Development / HTML

JSON Spirit: A C++ JSON Parser/Generator Implemented with Boost Spirit

Rate me:
Please Sign up or sign in to vote.
4.92/5 (110 votes)
10 May 2014MIT12 min read 4.1M   24.2K   287  
A C++ JSON parser/generator written using Boost::spirit

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual C++ Express 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "json_test", "json_test\json_test.vcproj", "{2DA49050-32A7-49D4-AF55-9BEE2BDDF889}"
	ProjectSection(ProjectDependencies) = postProject
		{BE262A86-CC26-4B25-A877-883ED2688CEC} = {BE262A86-CC26-4B25-A877-883ED2688CEC}
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "json_map_demo", "json_map_demo\json_map_demo.vcproj", "{07D8AA9F-D637-45A2-B06C-FF741462EAE8}"
	ProjectSection(ProjectDependencies) = postProject
		{BE262A86-CC26-4B25-A877-883ED2688CEC} = {BE262A86-CC26-4B25-A877-883ED2688CEC}
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "json_spirit_lib", "json_spirit\json_spirit.vcproj", "{BE262A86-CC26-4B25-A877-883ED2688CEC}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "json_demo", "json_demo\json_demo.vcproj", "{EFA1226E-A818-481B-A094-93A22D68130C}"
	ProjectSection(ProjectDependencies) = postProject
		{BE262A86-CC26-4B25-A877-883ED2688CEC} = {BE262A86-CC26-4B25-A877-883ED2688CEC}
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "json_headers_only_demo", "json_headers_only_demo\json_headers_only_demo.vcproj", "{4F019AE5-7DB7-460D-A64A-BBC8E7CF3AA3}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Win32 = Debug|Win32
		Release|Win32 = Release|Win32
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{2DA49050-32A7-49D4-AF55-9BEE2BDDF889}.Debug|Win32.ActiveCfg = Debug|Win32
		{2DA49050-32A7-49D4-AF55-9BEE2BDDF889}.Debug|Win32.Build.0 = Debug|Win32
		{2DA49050-32A7-49D4-AF55-9BEE2BDDF889}.Release|Win32.ActiveCfg = Release|Win32
		{2DA49050-32A7-49D4-AF55-9BEE2BDDF889}.Release|Win32.Build.0 = Release|Win32
		{07D8AA9F-D637-45A2-B06C-FF741462EAE8}.Debug|Win32.ActiveCfg = Debug|Win32
		{07D8AA9F-D637-45A2-B06C-FF741462EAE8}.Debug|Win32.Build.0 = Debug|Win32
		{07D8AA9F-D637-45A2-B06C-FF741462EAE8}.Release|Win32.ActiveCfg = Release|Win32
		{07D8AA9F-D637-45A2-B06C-FF741462EAE8}.Release|Win32.Build.0 = Release|Win32
		{BE262A86-CC26-4B25-A877-883ED2688CEC}.Debug|Win32.ActiveCfg = Debug|Win32
		{BE262A86-CC26-4B25-A877-883ED2688CEC}.Debug|Win32.Build.0 = Debug|Win32
		{BE262A86-CC26-4B25-A877-883ED2688CEC}.Release|Win32.ActiveCfg = Release|Win32
		{BE262A86-CC26-4B25-A877-883ED2688CEC}.Release|Win32.Build.0 = Release|Win32
		{EFA1226E-A818-481B-A094-93A22D68130C}.Debug|Win32.ActiveCfg = Debug|Win32
		{EFA1226E-A818-481B-A094-93A22D68130C}.Debug|Win32.Build.0 = Debug|Win32
		{EFA1226E-A818-481B-A094-93A22D68130C}.Release|Win32.ActiveCfg = Release|Win32
		{EFA1226E-A818-481B-A094-93A22D68130C}.Release|Win32.Build.0 = Release|Win32
		{4F019AE5-7DB7-460D-A64A-BBC8E7CF3AA3}.Debug|Win32.ActiveCfg = Debug|Win32
		{4F019AE5-7DB7-460D-A64A-BBC8E7CF3AA3}.Debug|Win32.Build.0 = Debug|Win32
		{4F019AE5-7DB7-460D-A64A-BBC8E7CF3AA3}.Release|Win32.ActiveCfg = Release|Win32
		{4F019AE5-7DB7-460D-A64A-BBC8E7CF3AA3}.Release|Win32.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

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.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Software Developer (Senior) Spirent Communications Plc
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions