diff options
Diffstat (limited to 'Project/ChartView.h')
-rw-r--r-- | Project/ChartView.h | 11 |
1 files changed, 11 insertions, 0 deletions
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 |