history.h

changeset 118
649110bb36a8
parent 117
7eb7a43a511b
child 160
edcb03f3ef75
--- a/history.h	Fri Apr 19 15:21:46 2013 +0300
+++ b/history.h	Sat Apr 20 04:18:22 2013 +0300
@@ -38,6 +38,7 @@
 	HISTORY_QuadSplit,
 	HISTORY_Inline,
 	HISTORY_Move,
+	HISTORY_Combo,
 };
 
 // =============================================================================
@@ -184,6 +185,18 @@
 // =============================================================================
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 // =============================================================================
+class ComboHistory : public HistoryEntry {
+public:
+	IMPLEMENT_HISTORY_TYPE (Combo)
+	
+	const std::vector<HistoryEntry*> paEntries;
+	
+	ComboHistory (const std::vector<HistoryEntry*> paEntries) : paEntries (paEntries) {}
+};
+
+// =============================================================================
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
+// =============================================================================
 namespace History {
 	extern std::vector<HistoryEntry*> entries;
 	

mercurial