Notification.cpp 539 B

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