Began listener for ui debug system

This commit is contained in:
Harrison Deng 2018-05-06 15:14:47 -05:00
parent 310b3edfcc
commit 5323f225d8
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,6 @@
*/ */
#include "ContourAnalyzer.h" #include "ContourAnalyzer.h"
#include <cmath> #include <cmath>
ContourAnalyzer::ContourAnalyzer(UI *ui) { ContourAnalyzer::ContourAnalyzer(UI *ui) {

View File

@ -4,6 +4,7 @@
class UIListener { class UIListener {
public: public:
virtual UIListener();
virtual void componentSetup() = 0; virtual void componentSetup() = 0;
virtual ~UIListener(); virtual ~UIListener();
}; };