Runnable.cpp 431 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // Runnable.cpp
  3. //
  4. // $Id: //poco/1.4/Foundation/src/Runnable.cpp#1 $
  5. //
  6. // Library: Foundation
  7. // Package: Threading
  8. // Module: Thread
  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/Runnable.h"
  16. #include "Poco/Thread.h"
  17. namespace Poco {
  18. Runnable::Runnable()
  19. {
  20. }
  21. Runnable::~Runnable()
  22. {
  23. }
  24. } // namespace Poco