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