Click here to Skip to main content
15,884,353 members
Articles / Programming Languages / C++

Undo and Redo the "Easy" Way

Rate me:
Please Sign up or sign in to vote.
4.95/5 (42 votes)
20 Jun 2004CPOL22 min read 289.7K   8.6K   114  
This article introduces a simple approach to in-memory transactions that can be used to implement Undo and Redo. The technique uses SEH and Virtual Memory and requires only STL and Win32.
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DrawIt", "DrawIt.vcproj", "{F1AC131A-D3E9-4B13-8613-B5E51A3DD43A}"
	ProjectSection(ProjectDependencies) = postProject
		{3B55A090-1509-4AE2-9367-C424DBAC30F9} = {3B55A090-1509-4AE2-9367-C424DBAC30F9}
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DrawFunc", "..\DrawFunc\DrawFunc.vcproj", "{3B55A090-1509-4AE2-9367-C424DBAC30F9}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{F1AC131A-D3E9-4B13-8613-B5E51A3DD43A}.Debug.ActiveCfg = Debug|Win32
		{F1AC131A-D3E9-4B13-8613-B5E51A3DD43A}.Debug.Build.0 = Debug|Win32
		{F1AC131A-D3E9-4B13-8613-B5E51A3DD43A}.Release.ActiveCfg = Release|Win32
		{F1AC131A-D3E9-4B13-8613-B5E51A3DD43A}.Release.Build.0 = Release|Win32
		{3B55A090-1509-4AE2-9367-C424DBAC30F9}.Debug.ActiveCfg = Debug|Win32
		{3B55A090-1509-4AE2-9367-C424DBAC30F9}.Debug.Build.0 = Debug|Win32
		{3B55A090-1509-4AE2-9367-C424DBAC30F9}.Release.ActiveCfg = Release|Win32
		{3B55A090-1509-4AE2-9367-C424DBAC30F9}.Release.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	EndGlobalSection
	GlobalSection(DevPartner Solution Properties) = 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.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
A compiler warns of bogasity, ignore it at your peril. Unless you've done the compiler's job yourself, don't criticize it.

Comments and Discussions