Click here to Skip to main content
15,891,905 members
Articles / Desktop Programming / MFC

The SBJ MVC Framework - The Model, from Abstraction to Realization

Rate me:
Please Sign up or sign in to vote.
5.00/5 (19 votes)
20 Mar 2009CPOL19 min read 109.9K   1.3K   51  
A Model-View-Controller Framework that integrates with the MFC Doc/View architecture

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{DCE83104-D04C-4C88-B10F-224122B0A52E}"
	ProjectSection(SolutionItems) = preProject
		CommonAppDebugSettings.vsprops = CommonAppDebugSettings.vsprops
		CommonAppReleaseSettings.vsprops = CommonAppReleaseSettings.vsprops
		CommonDLLDebugSettings.vsprops = CommonDLLDebugSettings.vsprops
		CommonDLLReleaseSettings.vsprops = CommonDLLReleaseSettings.vsprops
		CommonSettings.vsprops = CommonSettings.vsprops
		CommonVersion.rc2 = CommonVersion.rc2
		MasterBuildNumbers.h = MasterBuildNumbers.h
		Platform.h = Platform.h
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SbjCore", "SbjCore\SbjCore.vcproj", "{07A3A371-5782-4F06-B2FB-945033D62137}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XmlMvc", "XmlMvc\XmlMvc.vcproj", "{9C96FCCA-78E3-4F90-B335-6C8859711FFF}"
	ProjectSection(ProjectDependencies) = postProject
		{07A3A371-5782-4F06-B2FB-945033D62137} = {07A3A371-5782-4F06-B2FB-945033D62137}
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Shapes", "Shapes\Shapes.vcproj", "{029BC416-6136-4A3D-9DB1-82FA192210B3}"
	ProjectSection(ProjectDependencies) = postProject
		{07A3A371-5782-4F06-B2FB-945033D62137} = {07A3A371-5782-4F06-B2FB-945033D62137}
		{9C96FCCA-78E3-4F90-B335-6C8859711FFF} = {9C96FCCA-78E3-4F90-B335-6C8859711FFF}
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Win32 = Debug|Win32
		Release|Win32 = Release|Win32
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{07A3A371-5782-4F06-B2FB-945033D62137}.Debug|Win32.ActiveCfg = Debug|Win32
		{07A3A371-5782-4F06-B2FB-945033D62137}.Debug|Win32.Build.0 = Debug|Win32
		{07A3A371-5782-4F06-B2FB-945033D62137}.Release|Win32.ActiveCfg = Release|Win32
		{07A3A371-5782-4F06-B2FB-945033D62137}.Release|Win32.Build.0 = Release|Win32
		{9C96FCCA-78E3-4F90-B335-6C8859711FFF}.Debug|Win32.ActiveCfg = Debug|Win32
		{9C96FCCA-78E3-4F90-B335-6C8859711FFF}.Debug|Win32.Build.0 = Debug|Win32
		{9C96FCCA-78E3-4F90-B335-6C8859711FFF}.Release|Win32.ActiveCfg = Release|Win32
		{9C96FCCA-78E3-4F90-B335-6C8859711FFF}.Release|Win32.Build.0 = Release|Win32
		{029BC416-6136-4A3D-9DB1-82FA192210B3}.Debug|Win32.ActiveCfg = Debug|Win32
		{029BC416-6136-4A3D-9DB1-82FA192210B3}.Debug|Win32.Build.0 = Debug|Win32
		{029BC416-6136-4A3D-9DB1-82FA192210B3}.Release|Win32.ActiveCfg = Release|Win32
		{029BC416-6136-4A3D-9DB1-82FA192210B3}.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 Code Project Open License (CPOL)


Written By
SBJ
United States United States
Real name is Steve Johnson. Programming since 1979. Started on a Heathkit Micro with a DEC LSI-11 and UCSD Pascal. Moved to PCs & DOS as soon as Turbo Pascal became available. Did some Assembly, ISR, TSR etc. All this while working for a Manufacturing Co. for 8 years. Had my own solo Co. doing barcode labeling software for 4 years (terrible business man, all I wanted to do was code). Since then working for various software companies. Moved to Windows around the time of 3.1 with Borland C then C++. Then on to VC++ and MFC, and just about anything I could get my hands on or had to learn for my job, and been at it ever since. Of course recently I've been playing with .NET, ASP, C#, WPF etc.

Comments and Discussions