mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add the undocommands.cpp / undocommands.h files, which will hold a collection of classes that will hold undo commands. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
16 lines
155 B
C++
16 lines
155 B
C++
#include "undocommands.h"
|
|
|
|
UndoDeleteDive::UndoDeleteDive(QList<dive *> diveList)
|
|
{
|
|
|
|
}
|
|
|
|
void UndoDeleteDive::undo()
|
|
{
|
|
|
|
}
|
|
|
|
void UndoDeleteDive::redo()
|
|
{
|
|
|
|
}
|