1// EntryListener.cpp
2
3#include "EntryListener.h"
4
5// constructor
6EntryListener::EntryListener()
7{
8}
9
10// destructor
11EntryListener::~EntryListener()
12{
13}
14
15// EntryAdded
16void
17EntryListener::EntryAdded(Entry */*entry*/)
18{
19}
20
21// EntryRemoved
22void
23EntryListener::EntryRemoved(Entry */*entry*/)
24{
25}
26
27