1 | // |
2 | // PipeImpl.cpp |
3 | // |
4 | // Library: Foundation |
5 | // Package: Processes |
6 | // Module: PipeImpl |
7 | // |
8 | // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. |
9 | // and Contributors. |
10 | // |
11 | // SPDX-License-Identifier: BSL-1.0 |
12 | // |
13 | |
14 | |
15 | #include "Poco/PipeImpl.h" |
16 | |
17 | |
18 | #if defined(POCO_OS_FAMILY_WINDOWS) |
19 | #if defined(_WIN32_WCE) |
20 | #include "PipeImpl_DUMMY.cpp" |
21 | #else |
22 | #include "PipeImpl_WIN32.cpp" |
23 | #endif |
24 | #elif defined(POCO_OS_FAMILY_UNIX) |
25 | #include "PipeImpl_POSIX.cpp" |
26 | #else |
27 | #include "PipeImpl_DUMMY.cpp" |
28 | #endif |
29 | |