#pragma once #include "SurfaceManager.h" #include "BaseCmd.h" #include "GridWarpSurface.h" #include "ProjectionEditor.h" class ofxPiMapper; namespace ofx { namespace piMapper { class AddGridRowCmd : public BaseUndoCmd { public: AddGridRowCmd(GridWarpSurface * s); void exec(); void undo(); private: vector _vertices; vector _texCoords; GridWarpSurface * _surface; }; } // namespace piMapper } // namespace ofx