xref: /haiku/src/apps/debuganalyzer/gui/chart/DefaultChartAxisLegendSource.h (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef DEFAULT_CHART_AXIS_LEGEND_SOURCE_H
6 #define DEFAULT_CHART_AXIS_LEGEND_SOURCE_H
7 
8 #include "chart/ChartAxisLegendSource.h"
9 
10 
11 class DefaultChartAxisLegendSource : public ChartAxisLegendSource {
12 public:
13 	virtual	int32				GetAxisLegends(const ChartDataRange& range,
14 									ChartLegend** legends, double* values,
15 									int32 maxLegends);
16 };
17 
18 
19 #endif	// DEFAULT_CHART_AXIS_LEGEND_SOURCE_H
20