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