summaryrefslogtreecommitdiffstats
path: root/commands/command_edit.h
diff options
context:
space:
mode:
Diffstat (limited to 'commands/command_edit.h')
-rw-r--r--commands/command_edit.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/commands/command_edit.h b/commands/command_edit.h
index c3acf9d48..ecf745070 100644
--- a/commands/command_edit.h
+++ b/commands/command_edit.h
@@ -330,6 +330,15 @@ private:
bool workToBeDone() override;
};
+class AddWeight : public EditDivesBase {
+public:
+ AddWeight(bool currentDiveOnly);
+private:
+ void undo() override;
+ void redo() override;
+ bool workToBeDone() override;
+};
+
} // namespace Command
#endif