PipeImpl.cpp 555 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // PipeImpl.cpp
  3. //
  4. // $Id: //poco/1.4/Foundation/src/PipeImpl.cpp#1 $
  5. //
  6. // Library: Foundation
  7. // Package: Processes
  8. // Module: PipeImpl
  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/PipeImpl.h"
  16. #if defined(POCO_OS_FAMILY_WINDOWS)
  17. #if defined(_WIN32_WCE)
  18. #include "PipeImpl_DUMMY.cpp"
  19. #else
  20. #include "PipeImpl_WIN32.cpp"
  21. #endif
  22. #elif defined(POCO_OS_FAMILY_UNIX)
  23. #include "PipeImpl_POSIX.cpp"
  24. #else
  25. #include "PipeImpl_DUMMY.cpp"
  26. #endif