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