summaryrefslogtreecommitdiffstats
path: root/commands/command_event.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-03-03 23:31:46 +0100
committerGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-04-07 00:13:35 +0200
commit1971cfad547792ba961f804605ccb12780e17de0 (patch)
tree54819d974f20b13721afddba3c87b835bed8814f /commands/command_event.h
parent9a4718b46f5fa74c7c67a92d0c09ab805f364e12 (diff)
downloadsubsurface-1971cfad547792ba961f804605ccb12780e17de0.tar.gz
undo: implement set point change undo command
This is a simple copy of the other add-event commands. It could be made more friendly by stating the pO2 value in the text. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'commands/command_event.h')
-rw-r--r--commands/command_event.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/commands/command_event.h b/commands/command_event.h
index 3130a128f..8cceaeb25 100644
--- a/commands/command_event.h
+++ b/commands/command_event.h
@@ -44,6 +44,11 @@ public:
AddEventDivemodeSwitch(struct dive *d, int dcNr, int seconds, int divemode);
};
+class AddEventSetpointChange : public AddEventBase {
+public:
+ AddEventSetpointChange(struct dive *d, int dcNr, int seconds, pressure_t pO2);
+};
+
} // namespace Command
#endif // COMMAND_EVENT_H