EventArgs.h 836 B

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