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.
27 lines
624 B
27 lines
624 B
// PresentationViewState
|
|
// Presentation view state singleton
|
|
// Created by Krisjanis Rijnieks 2015-05-24
|
|
#pragma once
|
|
|
|
#include "MainView.h"
|
|
#include "ViewState.h"
|
|
#include "ofEvents.h"
|
|
#include "ofLog.h"
|
|
|
|
class MainView;
|
|
|
|
namespace ofx {
|
|
namespace piMapper {
|
|
class PresentationViewState : public ViewState {
|
|
public:
|
|
static ViewState * instance();
|
|
void mousePressed(ofMouseEventArgs & args);
|
|
|
|
protected:
|
|
PresentationViewState();
|
|
|
|
private:
|
|
static ViewState * _instance;
|
|
};
|
|
}
|
|
}
|