Click here to Skip to main content
15,884,099 members
Articles / Programming Languages / Objective C

Designing Robust Objects with Boost

Rate me:
Please Sign up or sign in to vote.
4.78/5 (34 votes)
16 Aug 200411 min read 110.1K   710   87  
Tutorial on designing classes using Boost libraries
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Core", "Core\Core.vcproj", "{8A553075-511F-4916-A0DC-BAA56A892CD2}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Tests", "Tests\Tests.vcproj", "{5C437963-6CFC-4E2A-A547-22D069D6210C}"
	ProjectSection(ProjectDependencies) = postProject
		{8A553075-511F-4916-A0DC-BAA56A892CD2} = {8A553075-511F-4916-A0DC-BAA56A892CD2}
	EndProjectSection
EndProject
Global
	GlobalSection(DPCodeReviewSolutionGUID) = preSolution
		DPCodeReviewSolutionGUID = {00000000-0000-0000-0000-000000000000}
	EndGlobalSection
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{8A553075-511F-4916-A0DC-BAA56A892CD2}.Debug.ActiveCfg = Debug|Win32
		{8A553075-511F-4916-A0DC-BAA56A892CD2}.Debug.Build.0 = Debug|Win32
		{8A553075-511F-4916-A0DC-BAA56A892CD2}.Release.ActiveCfg = Release|Win32
		{8A553075-511F-4916-A0DC-BAA56A892CD2}.Release.Build.0 = Release|Win32
		{5C437963-6CFC-4E2A-A547-22D069D6210C}.Debug.ActiveCfg = Debug|Win32
		{5C437963-6CFC-4E2A-A547-22D069D6210C}.Debug.Build.0 = Debug|Win32
		{5C437963-6CFC-4E2A-A547-22D069D6210C}.Release.ActiveCfg = Release|Win32
		{5C437963-6CFC-4E2A-A547-22D069D6210C}.Release.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	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.


Written By
Technical Lead
United States United States
Jim has been developing software for over 25 years. He is a consultant specializing in writing software for commercial products. He has developed software for embedded systems, device drivers, and windows applications.

Comments and Discussions