ofxPiMapper fixed for C++17 & oF 12.0
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
426 B

#pragma once
#include "BaseCmd.h"
#include "BaseSurface.h"
#include "SurfaceStack.h"
namespace ofx {
namespace piMapper {
class MvLayerUpCmd : public BaseUndoCmd {
public:
MvLayerUpCmd(SurfaceStack * stack, BaseSurface * selectedSurface);
void exec();
void undo();
private:
SurfaceStack * _stack;
BaseSurface * _selectedSurface;
int _selectedSurfaceIndex;
};
} // namespace piMapper
} // namespace ofx