1 // 2 // Runnable.cpp 3 // 4 // Library: Foundation 5 // Package: Threading 6 // Module: Thread 7 // 8 // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. 9 // and Contributors. 10 // 11 // SPDX-License-Identifier: BSL-1.0 12 // 13 14 15 #include "Poco/Runnable.h" 16 #include "Poco/Thread.h" 17 18 19 namespace Poco { 20 21 Runnable()22Runnable::Runnable() 23 { 24 } 25 26 ~Runnable()27Runnable::~Runnable() 28 { 29 } 30 31 32 } // namespace Poco 33