Configurable.cpp 438 B

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