From 1351042ddd7c1e85f0ca0ff254d80d58614d57ce Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Mon, 12 May 2014 10:07:01 +0200 Subject: [PATCH] Add texture and projection editor classes --- src/ofxProjectionEditor.cpp | 1 + src/ofxProjectionEditor.h | 11 +++++++++++ src/ofxTextureEditor.cpp | 1 + src/ofxTextureEditor.h | 11 +++++++++++ 4 files changed, 24 insertions(+) create mode 100644 src/ofxProjectionEditor.cpp create mode 100644 src/ofxProjectionEditor.h create mode 100644 src/ofxTextureEditor.cpp create mode 100644 src/ofxTextureEditor.h diff --git a/src/ofxProjectionEditor.cpp b/src/ofxProjectionEditor.cpp new file mode 100644 index 0000000..7f7946e --- /dev/null +++ b/src/ofxProjectionEditor.cpp @@ -0,0 +1 @@ +#include "ofxProjectionEditor.h" \ No newline at end of file diff --git a/src/ofxProjectionEditor.h b/src/ofxProjectionEditor.h new file mode 100644 index 0000000..a843e97 --- /dev/null +++ b/src/ofxProjectionEditor.h @@ -0,0 +1,11 @@ +#ifndef H_OFX_PROJECTION_EDITOR +#define H_OFX_PROJECTION_EDITOR + +class ofxProjectionEditor() +{ +public: + ofxProjectionEditor(); + ~ofxProjectionEditor(); +} + +#endif \ No newline at end of file diff --git a/src/ofxTextureEditor.cpp b/src/ofxTextureEditor.cpp new file mode 100644 index 0000000..d324303 --- /dev/null +++ b/src/ofxTextureEditor.cpp @@ -0,0 +1 @@ +#include "ofxTextureEditor.h" \ No newline at end of file diff --git a/src/ofxTextureEditor.h b/src/ofxTextureEditor.h new file mode 100644 index 0000000..d631358 --- /dev/null +++ b/src/ofxTextureEditor.h @@ -0,0 +1,11 @@ +#ifndef H_OFX_TEXTURE_EDITOR +#define H_OFX_TEXTURE_EDITOR + +class ofxTextureEditor +{ +public: + ofxTextureEditor(); + ~ofxTextureEditor(); +}; + +#endif \ No newline at end of file