1 | // |
---|---|
2 | // Void.cpp |
3 | // |
4 | // Library: Foundation |
5 | // Package: Core |
6 | // Module: Void |
7 | // |
8 | // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. |
9 | // and Contributors. |
10 | // |
11 | // SPDX-License-Identifier: BSL-1.0 |
12 | // |
13 | |
14 | |
15 | #include "Poco/Void.h" |
16 | |
17 | |
18 | namespace Poco { |
19 | |
20 | |
21 | Void::Void() |
22 | { |
23 | } |
24 | |
25 | |
26 | Void::Void(const Void&) |
27 | { |
28 | } |
29 | |
30 | |
31 | Void::~Void() |
32 | { |
33 | } |
34 | |
35 | |
36 | Void& Void::operator = (const Void&) |
37 | { |
38 | return *this; |
39 | } |
40 | |
41 | |
42 | } // namespace Poco |
43 |