1 | // |
---|---|
2 | // EventArgs.cpp |
3 | // |
4 | // Library: Foundation |
5 | // Package: Events |
6 | // Module: EventArgs |
7 | // |
8 | // Implementation of EventArgs |
9 | // |
10 | // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. |
11 | // and Contributors. |
12 | // |
13 | // SPDX-License-Identifier: BSL-1.0 |
14 | // |
15 | |
16 | |
17 | #include "Poco/EventArgs.h" |
18 | |
19 | |
20 | namespace Poco { |
21 | |
22 | |
23 | EventArgs::EventArgs() |
24 | { |
25 | } |
26 | |
27 | |
28 | EventArgs::~EventArgs() |
29 | { |
30 | } |
31 | |
32 | |
33 | } // namespace Poco |
34 |