RefCountedObject.cpp 480 B

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