diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-01-10 08:25:37 +0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-03-10 09:25:57 -0700 |
commit | 57b96490b2c5b81023439046dea225b8caf09946 (patch) | |
tree | 3c5a811d23fbd80720de18331786ab1b56222407 /commands/command.h | |
parent | 200932189451d52e277004871004e3b2a0593e58 (diff) | |
download | subsurface-57b96490b2c5b81023439046dea225b8caf09946.tar.gz |
mobile/undo: create EditDive command
Command that just swaps two dives. This is rather complex,
as for example a dive site might be created.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'commands/command.h')
-rw-r--r-- | commands/command.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/commands/command.h b/commands/command.h index 281c1635c..00de1425a 100644 --- a/commands/command.h +++ b/commands/command.h @@ -89,6 +89,11 @@ void editProfile(dive *d); // dive computer(s) and cylinder(s) will be reset! int addWeight(bool currentDiveOnly); int removeWeight(int index, bool currentDiveOnly); int editWeight(int index, weightsystem_t ws, bool currentDiveOnly); +#ifdef SUBSURFACE_MOBILE +// Edits a dive and creates a divesite (if createDs != NULL) or edits a divesite (if changeDs != NULL). +// Takes ownership of newDive and createDs! +void editDive(dive *oldDive, dive *newDive, dive_site *createDs, dive_site *changeDs, location_t dsLocation); +#endif // 5) Trip editing commands |