PipeImpl_DUMMY.cpp 761 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. //
  2. // PipeImpl_DUMMY.cpp
  3. //
  4. // $Id: //poco/1.4/Foundation/src/PipeImpl_DUMMY.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_DUMMY.h"
  16. namespace Poco {
  17. PipeImpl::PipeImpl()
  18. {
  19. }
  20. PipeImpl::~PipeImpl()
  21. {
  22. }
  23. int PipeImpl::writeBytes(const void* buffer, int length)
  24. {
  25. return 0;
  26. }
  27. int PipeImpl::readBytes(void* buffer, int length)
  28. {
  29. return 0;
  30. }
  31. PipeImpl::Handle PipeImpl::readHandle() const
  32. {
  33. return 0;
  34. }
  35. PipeImpl::Handle PipeImpl::writeHandle() const
  36. {
  37. return 0;
  38. }
  39. void PipeImpl::closeRead()
  40. {
  41. }
  42. void PipeImpl::closeWrite()
  43. {
  44. }
  45. } // namespace Poco