1/*
2 * Copyright 2007, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * All rights reserved. Distributed under the terms of the MIT license.
4 */
5
6#include "EntryListener.h"
7
8// constructor
9EntryListener::EntryListener()
10{
11}
12
13// destructor
14EntryListener::~EntryListener()
15{
16}
17
18// EntryAdded
19void
20EntryListener::EntryAdded(Entry */*entry*/)
21{
22}
23
24// EntryRemoved
25void
26EntryListener::EntryRemoved(Entry */*entry*/)
27{
28}
29
30