Event.cpp 577 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // Event.cpp
  3. //
  4. // $Id: //poco/1.4/Foundation/src/Event.cpp#2 $
  5. //
  6. // Library: Foundation
  7. // Package: Threading
  8. // Module: Event
  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/Event.h"
  16. #if defined(POCO_OS_FAMILY_WINDOWS)
  17. #include "Event_WIN32.cpp"
  18. #elif defined(POCO_VXWORKS)
  19. #include "Event_VX.cpp"
  20. #else
  21. #include "Event_POSIX.cpp"
  22. #endif
  23. namespace Poco {
  24. Event::Event(bool autoReset): EventImpl(autoReset)
  25. {
  26. }
  27. Event::~Event()
  28. {
  29. }
  30. } // namespace Poco