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