From 9154f5ee02766121f7ac8dd756f2e73ae95e1afa Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Mon, 24 Apr 2017 20:11:39 -0300 Subject: Chart view implementation start --- Project/ChartView.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Project/ChartView.h (limited to 'Project/ChartView.h') diff --git a/Project/ChartView.h b/Project/ChartView.h new file mode 100644 index 0000000..191a264 --- /dev/null +++ b/Project/ChartView.h @@ -0,0 +1,11 @@ +#ifndef CHARTVIEW_H +#define CHARTVIEW_H +#include "ChartViewBase.h" + +class ChartView : public ChartViewBase +{ +public: + ChartView(wxWindow* parent); + virtual ~ChartView(); +}; +#endif // CHARTVIEW_H -- cgit