feat(furdb): add continue and next commands

This commit is contained in:
2026-08-17 11:35:36 +02:00
parent dd96f95d77
commit 26efd110f1
3 changed files with 26 additions and 0 deletions
+10
View File
@@ -36,6 +36,16 @@ public:
void execute(context& ctx, const command_info& info) override;
};
class continue_command final : public command {
public:
void execute(context& ctx, const command_info& info) override;
};
class next_command final : public command {
public:
void execute(context& ctx, const command_info& info) override;
};
class break_command final : public command {
public:
void execute(context& ctx, const command_info& info) override;