#pragma once #include "interfaces/command.hpp" #include "interfaces/cursor.hpp" #include "interfaces/scene.hpp" #include class InsertCellCommand : public ICommand { public: InsertCellCommand( const std::shared_ptr &cursor_controller, const std::shared_ptr &scene ) noexcept; void execute() noexcept override; private: const std::shared_ptr &_cursor_controller; const std::shared_ptr &_scene; };