1 | // |
2 | // EventArgs.h |
3 | // |
4 | // Library: Foundation |
5 | // Package: Events |
6 | // Module: EventArgs |
7 | // |
8 | // Definition of EventArgs. |
9 | // |
10 | // Copyright (c) 2006-2011, Applied Informatics Software Engineering GmbH. |
11 | // and Contributors. |
12 | // |
13 | // SPDX-License-Identifier: BSL-1.0 |
14 | // |
15 | |
16 | |
17 | #ifndef Foundation_EventArgs_INCLUDED |
18 | #define Foundation_EventArgs_INCLUDED |
19 | |
20 | |
21 | #include "Poco/Foundation.h" |
22 | |
23 | |
24 | namespace Poco { |
25 | |
26 | |
27 | class Foundation_API EventArgs |
28 | /// The purpose of the EventArgs class is to be used as parameter |
29 | /// when one doesn't want to send any data. |
30 | /// |
31 | /// One can use EventArgs as a base class for one's own event arguments |
32 | /// but with the arguments being a template parameter this is not |
33 | /// necessary. |
34 | { |
35 | public: |
36 | EventArgs(); |
37 | |
38 | virtual ~EventArgs(); |
39 | }; |
40 | |
41 | |
42 | } // namespace Poco |
43 | |
44 | |
45 | #endif |
46 | |