blob: fd74466be4cb15965f1466c4b35383ded9dbc002 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#include "undobuffer.h"
UndoBuffer::UndoBuffer(QObject *parent) : QObject(parent)
{
}
UndoBuffer::~UndoBuffer()
{
}
bool UndoBuffer::canUndo()
{
}
bool UndoBuffer::canRedo()
{
}
void UndoBuffer::redo()
{
}
void UndoBuffer::undo()
{
}
void UndoBuffer::recordbefore(QString commandName, dive *affectedDive)
{
}
void UndoBuffer::recordAfter(dive *affectedDive)
{
}
|