You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
560 B
33 lines
560 B
#pragma once
|
|
|
|
#include "ofMain.h"
|
|
#include "SurfaceManager.h"
|
|
#include "SurfaceManagerGui.h"
|
|
#include "MediaServer.h"
|
|
#include "FboSource.h"
|
|
#include "BaseCmd.h"
|
|
#include "CmdManager.h"
|
|
#include "RmSurfaceCmd.h"
|
|
#include "Application.h"
|
|
#include "Info.h"
|
|
|
|
namespace ofx {
|
|
namespace piMapper {
|
|
class Application;
|
|
}
|
|
}
|
|
|
|
class ofxPiMapper {
|
|
|
|
public:
|
|
ofxPiMapper();
|
|
|
|
void setup();
|
|
void draw();
|
|
|
|
void registerFboSource(ofx::piMapper::FboSource & fboSource);
|
|
bool loadXmlSettings(string fileName);
|
|
|
|
private:
|
|
ofx::piMapper::Application _application;
|
|
};
|