// // Mutex.cpp // // Library: Foundation // Package: Threading // Module: Mutex // // Copyright (c) 2004-2008, Applied Informatics Software Engineering GmbH. // and Contributors. // // SPDX-License-Identifier: BSL-1.0 // #include "Poco/Mutex.h" #include "Mutex_POSIX.cpp" namespace Poco { Mutex::Mutex() { } Mutex::~Mutex() { } FastMutex::FastMutex() { } FastMutex::~FastMutex() { } } // namespace Poco