SharedMemory_DUMMY.cpp 646 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // SharedMemoryImpl.cpp
  3. //
  4. // $Id: //poco/1.4/Foundation/src/SharedMemory_DUMMY.cpp#1 $
  5. //
  6. // Library: Foundation
  7. // Package: Processes
  8. // Module: SharedMemoryImpl
  9. //
  10. // Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
  11. // and Contributors.
  12. //
  13. // SPDX-License-Identifier: BSL-1.0
  14. //
  15. #include "Poco/SharedMemory_DUMMY.h"
  16. namespace Poco {
  17. SharedMemoryImpl::SharedMemoryImpl(const std::string&, std::size_t, SharedMemory::AccessMode, const void*, bool)
  18. {
  19. }
  20. SharedMemoryImpl::SharedMemoryImpl(const Poco::File&, SharedMemory::AccessMode, const void*)
  21. {
  22. }
  23. SharedMemoryImpl::~SharedMemoryImpl()
  24. {
  25. }
  26. } // namespace Poco