aboutsummaryrefslogtreecommitdiff
path: root/src/commands/insert_cell.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/insert_cell.hpp')
-rw-r--r--src/commands/insert_cell.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/commands/insert_cell.hpp b/src/commands/insert_cell.hpp
deleted file mode 100644
index 9d54736..0000000
--- a/src/commands/insert_cell.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#pragma once
-
-#include "interfaces/command.hpp"
-#include "interfaces/cursor.hpp"
-#include "interfaces/scene.hpp"
-
-#include <memory>
-
-class InsertCellCommand : public ICommand
-{
-public:
- InsertCellCommand(
- const std::shared_ptr<ICursorController> &cursor_controller,
- const std::shared_ptr<IScene> &scene) noexcept;
-
- void execute() noexcept override;
-
-private:
- const std::shared_ptr<ICursorController> &_cursor_controller;
- const std::shared_ptr<IScene> &_scene;
-};