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