xref: /haiku/src/apps/debuganalyzer/gui/chart/ChartDefs.h (revision 68ea01249e1e2088933cb12f9c28d4e5c5d1c9ef)
1 /*
2  * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef CHART_DEFS_H
6 #define CHART_DEFS_H
7 
8 
9 enum ChartAxisLocation {
10 	CHART_AXIS_LEFT,
11 	CHART_AXIS_TOP,
12 	CHART_AXIS_RIGHT,
13 	CHART_AXIS_BOTTOM
14 };
15 
16 
17 #endif	// CHART_DEFS_H
18