1 | // |
---|---|
2 | // Channel.cpp |
3 | // |
4 | // Library: Foundation |
5 | // Package: Logging |
6 | // Module: Channel |
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/Channel.h" |
16 | |
17 | |
18 | namespace Poco { |
19 | |
20 | |
21 | Channel::Channel() |
22 | { |
23 | } |
24 | |
25 | |
26 | Channel::~Channel() |
27 | { |
28 | } |
29 | |
30 | |
31 | void Channel::open() |
32 | { |
33 | } |
34 | |
35 | |
36 | void Channel::close() |
37 | { |
38 | } |
39 | |
40 | |
41 | void Channel::setProperty(const std::string& name, const std::string& value) |
42 | { |
43 | throw PropertyNotSupportedException(name); |
44 | } |
45 | |
46 | |
47 | std::string Channel::getProperty(const std::string& name) const |
48 | { |
49 | throw PropertyNotSupportedException(name); |
50 | } |
51 | |
52 | |
53 | } // namespace Poco |
54 |