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
12class NanotimeChartAxisLegendSource : public ChartAxisLegendSource {
13public:
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