--- 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;