diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-24 20:11:39 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-24 20:11:39 -0300 |
commit | 9154f5ee02766121f7ac8dd756f2e73ae95e1afa (patch) | |
tree | 52fbd84e8801aebf0305d5278dbecfe105dbc9ee /Project/ChartView.cpp | |
parent | 7804c1bd2c0bd2a5f135c30b20991e8187581cc6 (diff) | |
download | PSP.git-9154f5ee02766121f7ac8dd756f2e73ae95e1afa.tar.gz PSP.git-9154f5ee02766121f7ac8dd756f2e73ae95e1afa.tar.xz PSP.git-9154f5ee02766121f7ac8dd756f2e73ae95e1afa.zip |
Chart view implementation start
Diffstat (limited to 'Project/ChartView.cpp')
-rw-r--r-- | Project/ChartView.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Project/ChartView.cpp b/Project/ChartView.cpp new file mode 100644 index 0000000..a5fe183 --- /dev/null +++ b/Project/ChartView.cpp @@ -0,0 +1,11 @@ +#include "ChartView.h" + +ChartView::ChartView(wxWindow* parent) + : ChartViewBase(parent) +{ +} + +ChartView::~ChartView() +{ +} + |