Browse Source

Add placeholder code to ofxPiMapper and more exceptions to example .gitignore

master
Krisjanis Rijnieks 11 years ago
parent
commit
8074e12662
  1. 1
      example/.gitignore
  2. 1
      example/src/ofApp.h
  3. 11
      src/ofxPiMapper.cpp
  4. 13
      src/ofxPiMapper.h

1
example/.gitignore

@ -4,3 +4,4 @@ obj
*.plist
*.xcconfig
*~
config.make

1
example/src/ofApp.h

@ -2,6 +2,7 @@
#define H_OF_APP
#include "ofMain.h"
#include "ofxPiMapper.h"
class ofApp : public ofBaseApp
{

11
src/ofxPiMapper.cpp

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

13
src/ofxPiMapper.h

@ -0,0 +1,13 @@
#ifndef H_OFX_PI_MAPPER
#define H_OFX_PI_MAPPER
#include "ofMain.h"
class ofxPiMapper
{
public:
ofxPiMapper();
~ofxPiMapper();
};
#endif
Loading…
Cancel
Save