1/*
2 * Copyright 2015, Stephan Aßmus <superstippi@gmx.de>.
3 * All rights reserved. Distributed under the terms of the MIT License.
4 */
5
6#include "UndoableEditListener.h"
7
8
9UndoableEditListener::UndoableEditListener()
10	:
11	BReferenceable()
12{
13}
14
15
16UndoableEditListener::~UndoableEditListener()
17{
18}
19
20
21void
22UndoableEditListener::UndoableEditHappened(const TextDocument* document,
23	const UndoableEditRef& edit)
24{
25}
26