1 | // |
2 | // Notification.cpp |
3 | // |
4 | // Library: Foundation |
5 | // Package: Notifications |
6 | // Module: Notification |
7 | // |
8 | // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. |
9 | // and Contributors. |
10 | // |
11 | // SPDX-License-Identifier: BSL-1.0 |
12 | // |
13 | |
14 | |
15 | #include "Poco/Notification.h" |
16 | #include <typeinfo> |
17 | |
18 | |
19 | namespace Poco { |
20 | |
21 | |
22 | Notification::Notification() |
23 | { |
24 | } |
25 | |
26 | |
27 | Notification::~Notification() |
28 | { |
29 | } |
30 | |
31 | |
32 | std::string Notification::name() const |
33 | { |
34 | return typeid(*this).name(); |
35 | } |
36 | |
37 | |
38 | } // namespace Poco |
39 | |