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