From ab30228b1a57053323363674fa7f137c0329a180 Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Tue, 7 Jul 2020 23:12:04 -0300 Subject: Voltage heat map implemented Voltage heat map implemented using modern OpenGL =) New external library required: -GLEW -GLFW -GLM (incorporeted at the source) Old memory leaks fixed =) --- Project/main.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Project/main.cpp') diff --git a/Project/main.cpp b/Project/main.cpp index 69c2c6a..358bc6d 100644 --- a/Project/main.cpp +++ b/Project/main.cpp @@ -2,6 +2,8 @@ #pragma diag_suppress 102 #endif +#include + #include #include #include @@ -32,6 +34,7 @@ class MainApp : public wxApp { public: + MainApp() {} virtual ~MainApp() {} bool LoadInitFile(PropertiesData* propertiesData) -- cgit