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
18namespace Poco {
19
20
21Channel::Channel()
22{
23}
24
25
26Channel::~Channel()
27{
28}
29
30
31void Channel::open()
32{
33}
34
35
36void Channel::close()
37{
38}
39
40
41void Channel::setProperty(const std::string& name, const std::string& /*value*/)
42{
43 throw PropertyNotSupportedException(name);
44}
45
46
47std::string Channel::getProperty(const std::string& name) const
48{
49 throw PropertyNotSupportedException(name);
50}
51
52
53} // namespace Poco
54