| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // Void.cpp
- //
- // $Id: //poco/1.4/Foundation/src/Void.cpp#1 $
- //
- // Library: Foundation
- // Package: Core
- // Module: Void
- //
- // Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
- // and Contributors.
- //
- // SPDX-License-Identifier: BSL-1.0
- //
- #include "Poco/Void.h"
- namespace Poco {
- Void::Void()
- {
- }
- Void::Void(const Void&)
- {
- }
- Void::~Void()
- {
- }
- Void& Void::operator = (const Void&)
- {
- return *this;
- }
- } // namespace Poco
|