poco/Foundation/src/Void.cpp

45 lines
454 B
C++
Raw Normal View History

2012-04-29 18:52:25 +00:00
//
// 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
2012-04-29 18:52:25 +00:00
//
#include "Poco/Void.h"
namespace Poco {
Void::Void()
{
}
Void::Void(const Void&)
{
}
Void::~Void()
{
}
Void& Void::operator = (const Void&)
{
return *this;
}
} // namespace Poco