RWLock.cpp 676 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // RWLock.cpp
  3. //
  4. // $Id: //poco/1.4/Foundation/src/RWLock.cpp#3 $
  5. //
  6. // Library: Foundation
  7. // Package: Threading
  8. // Module: RWLock
  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/RWLock.h"
  16. #if defined(POCO_OS_FAMILY_WINDOWS)
  17. #if defined(_WIN32_WCE)
  18. #include "RWLock_WINCE.cpp"
  19. #else
  20. #include "RWLock_WIN32.cpp"
  21. #endif
  22. #elif defined(POCO_ANDROID)
  23. #include "RWLock_Android.cpp"
  24. #elif defined(POCO_VXWORKS)
  25. #include "RWLock_VX.cpp"
  26. #else
  27. #include "RWLock_POSIX.cpp"
  28. #endif
  29. namespace Poco {
  30. RWLock::RWLock()
  31. {
  32. }
  33. RWLock::~RWLock()
  34. {
  35. }
  36. } // namespace Poco