1 #pragma once
2 
3 #ifndef HISTORYTYPES_H
4 #define HISTORYTYPES_H
5 
6 namespace HistoryType {
7 
8 enum {
9   Unidentified = 0,
10   BrushTool,
11   EraserTool,
12   FillTool,
13   PaintBrushTool,
14   AutocloseTool,
15   GeometricTool,
16   ControlPointEditorTool,
17   EditTool_Move,
18   FingerTool,
19   Fx,
20   Schematic,
21   Palette,
22   Xsheet,
23   FilmStrip
24 };
25 }
26 
27 #endif