diff --git a/src/ofxSourcesEditor.cpp b/src/ofxSourcesEditor.cpp new file mode 100644 index 0000000..563e87c --- /dev/null +++ b/src/ofxSourcesEditor.cpp @@ -0,0 +1,11 @@ +#include "ofxSourcesEditor.h" + +ofxSourcesEditor::ofxSourcesEditor() +{ + +} + +ofxSourcesEditor::~ofxSourcesEditor() +{ + +} \ No newline at end of file diff --git a/src/ofxSourcesEditor.h b/src/ofxSourcesEditor.h new file mode 100644 index 0000000..02ec86f --- /dev/null +++ b/src/ofxSourcesEditor.h @@ -0,0 +1,14 @@ +#ifndef H_OFX_SOURCES_EDITOR +#define H_OFX_SOURCES_EDITOR + +class ofxSourcesEditor +{ +public: + ofxSourcesEditor(); + ~ofxSourcesEditor(); + +private: + +}; + +#endif \ No newline at end of file diff --git a/src/ofxSurfaceManagerGui.h b/src/ofxSurfaceManagerGui.h index 3dc7e4a..96186fb 100644 --- a/src/ofxSurfaceManagerGui.h +++ b/src/ofxSurfaceManagerGui.h @@ -1,6 +1,9 @@ #ifndef H_OFX_SURFACE_MANAGER_GUI #define H_OFX_SURFACE_MANAGER_GUI +// I'm starting to think, maybe we should use ofxStateMachine here. +// Would make sense. TODO later. + #include "ofEvents.h" #include "ofxSurfaceManager.h" #include "ofxTextureEditor.h"