EventArgs.cpp 442 B

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