mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
32 lines
714 B
C
32 lines
714 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
// Note: this header file is used by the undo-machinery and should not be included elsewhere.
|
||
|
|
||
|
#ifndef COMMAND_DIVESITE_H
|
||
|
#define COMMAND_DIVESITE_H
|
||
|
|
||
|
#include "command_base.h"
|
||
|
|
||
|
#include <QVector>
|
||
|
|
||
|
// We put everything in a namespace, so that we can shorten names without polluting the global namespace
|
||
|
namespace Command {
|
||
|
|
||
|
class DeleteDiveSites : public Base {
|
||
|
public:
|
||
|
DeleteDiveSites(const QVector<dive_site *> &sites);
|
||
|
private:
|
||
|
bool workToBeDone() override;
|
||
|
|
||
|
// For redo
|
||
|
std::vector<dive_site *> sitesToRemove;
|
||
|
|
||
|
// For undo
|
||
|
std::vector<OwningDiveSitePtr> sitesToAdd;
|
||
|
void undo() override;
|
||
|
void redo() override;
|
||
|
};
|
||
|
|
||
|
} // namespace Command
|
||
|
|
||
|
#endif // COMMAND_DIVESITE_H
|