mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
42 lines
378 B
C++
42 lines
378 B
C++
|
#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)
|
||
|
{
|
||
|
|
||
|
}
|