2023-02-08 11:04:11 +00:00
|
|
|
//
|
|
|
|
// PipeImpl.h
|
|
|
|
//
|
|
|
|
// Library: Foundation
|
|
|
|
// Package: Processes
|
|
|
|
// Module: PipeImpl
|
|
|
|
//
|
|
|
|
// Definition of the PipeImpl class.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
|
|
// and Contributors.
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef Foundation_PipeImpl_INCLUDED
|
|
|
|
#define Foundation_PipeImpl_INCLUDED
|
|
|
|
|
|
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
|
|
|
|
|
|
|
2023-02-14 22:13:11 +00:00
|
|
|
#if defined(POCO_OS_FAMILY_UNIX)
|
2023-02-13 09:22:33 +00:00
|
|
|
# include "Poco/PipeImpl_POSIX.h"
|
2023-02-08 11:04:11 +00:00
|
|
|
#else
|
2023-02-13 09:22:33 +00:00
|
|
|
# include "Poco/PipeImpl_DUMMY.h"
|
2023-02-08 11:04:11 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif // Foundation_PipeImpl_INCLUDED
|