Browse Source

Add ofxSourcesEditor and some comments

master
Krisjanis Rijnieks 11 years ago
parent
commit
17e9a5b50b
  1. 11
      src/ofxSourcesEditor.cpp
  2. 14
      src/ofxSourcesEditor.h
  3. 3
      src/ofxSurfaceManagerGui.h

11
src/ofxSourcesEditor.cpp

@ -0,0 +1,11 @@
#include "ofxSourcesEditor.h"
ofxSourcesEditor::ofxSourcesEditor()
{
}
ofxSourcesEditor::~ofxSourcesEditor()
{
}

14
src/ofxSourcesEditor.h

@ -0,0 +1,14 @@
#ifndef H_OFX_SOURCES_EDITOR
#define H_OFX_SOURCES_EDITOR
class ofxSourcesEditor
{
public:
ofxSourcesEditor();
~ofxSourcesEditor();
private:
};
#endif

3
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"

Loading…
Cancel
Save