Click here to Skip to main content
15,881,173 members
Articles / Programming Languages / C++

A Simple, Action Based, Undo/Redo Framework

Rate me:
Please Sign up or sign in to vote.
4.51/5 (38 votes)
16 Feb 2013CPOL5 min read 97.2K   1.9K   104  
How to use a simple, action based, undo/redo framework
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kis", "kis\kis.vcproj", "{44C8E722-9016-4C9F-A7EA-79A087BC809B}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KisActionDemo", "KisActionDemo\KisActionDemo.vcproj", "{FBB5DB6B-53BC-4289-A783-35ADA3788B1F}"
	ProjectSection(ProjectDependencies) = postProject
		{44C8E722-9016-4C9F-A7EA-79A087BC809B} = {44C8E722-9016-4C9F-A7EA-79A087BC809B}
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{44C8E722-9016-4C9F-A7EA-79A087BC809B}.Debug.ActiveCfg = Debug|Win32
		{44C8E722-9016-4C9F-A7EA-79A087BC809B}.Debug.Build.0 = Debug|Win32
		{44C8E722-9016-4C9F-A7EA-79A087BC809B}.Release.ActiveCfg = Release|Win32
		{44C8E722-9016-4C9F-A7EA-79A087BC809B}.Release.Build.0 = Release|Win32
		{FBB5DB6B-53BC-4289-A783-35ADA3788B1F}.Debug.ActiveCfg = Debug|Win32
		{FBB5DB6B-53BC-4289-A783-35ADA3788B1F}.Debug.Build.0 = Debug|Win32
		{FBB5DB6B-53BC-4289-A783-35ADA3788B1F}.Release.ActiveCfg = Release|Win32
		{FBB5DB6B-53BC-4289-A783-35ADA3788B1F}.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.

License

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


Written By
zdf
Romania Romania
Just a humble programmer.

Comments and Discussions