From 293dce71fd6e2681a00fc317216a8e93dcd327b2 Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Mon, 12 May 2014 10:22:52 +0200 Subject: [PATCH] Fix projection editor class typos --- src/ofxProjectionEditor.h | 4 ++-- src/ofxSurfaceManagerGui.h | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ofxProjectionEditor.h b/src/ofxProjectionEditor.h index a843e97..26ca272 100644 --- a/src/ofxProjectionEditor.h +++ b/src/ofxProjectionEditor.h @@ -1,11 +1,11 @@ #ifndef H_OFX_PROJECTION_EDITOR #define H_OFX_PROJECTION_EDITOR -class ofxProjectionEditor() +class ofxProjectionEditor { public: ofxProjectionEditor(); ~ofxProjectionEditor(); -} +}; #endif \ No newline at end of file diff --git a/src/ofxSurfaceManagerGui.h b/src/ofxSurfaceManagerGui.h index e7051bb..1ce3bd8 100644 --- a/src/ofxSurfaceManagerGui.h +++ b/src/ofxSurfaceManagerGui.h @@ -3,6 +3,8 @@ #include "ofMain.h" #include "ofxSurfaceManager.h" +#include "ofxTextureEditor.h" +#include "ofxProjectionEditor.h" class ofxSurfaceManagerGui { @@ -15,6 +17,8 @@ public: private: ofxSurfaceManager* surfaceManager; + ofxTextureEditor textureEditor; + ofxProjectionEditor projectionEditor; }; #endif \ No newline at end of file