passwordmanager/gui/stacksupport.cpp

18 lines
378 B
C++
Raw Permalink Normal View History

2015-09-06 20:33:09 +02:00
#include "./stacksupport.h"
2015-04-22 19:30:09 +02:00
namespace QtGui {
/*!
* \class StackSupport
* \brief The StackSupport class is used as base class for models supporting undoing of changes via QUndoStack.
*/
/*!
* \brief Constructs a new stack support with the specified \a undoStack.
*/
2017-05-01 03:26:04 +02:00
StackSupport::StackSupport(QUndoStack *undoStack)
: m_undoStack(undoStack)
{
}
2017-09-29 17:17:12 +02:00
} // namespace QtGui