summaryrefslogtreecommitdiff
path: root/src/T2DLL/CPieChartView.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/CPieChartView.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/T2DLL/CPieChartView.h b/src/T2DLL/CPieChartView.h
new file mode 100644
index 0000000..8980203
--- /dev/null
+++ b/src/T2DLL/CPieChartView.h
@@ -0,0 +1,11 @@
+#pragma once
+#include "common.h"
+
+class CPieChartView {
+public:
+ static CPieChartView* CreateCPieChartViewStream(T2Archive*);
+ CPieChartView(T2Archive*);
+ virtual ~CPieChartView();
+ void DrawSelf();
+ void CutPie(const CPieChartView::Pie*);
+};