Mantid
Loading...
Searching...
No Matches
StdoutChannel.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2007 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
7//
8// StdoutChannel.h
9//
10// Similar to console channel for logging. The output is on std::cout instead of
11// std::clog (which is the same as std::cerr)
12// Usage: use in it Mantid.properties or mantid.user.properties instead of
13// ConsoleChannel class
14//
15//
16//
17
18#pragma once
19
20#include "MantidKernel/DllConfig.h"
21#include <Poco/ConsoleChannel.h>
22namespace Poco {
23class MANTID_KERNEL_DLL StdoutChannel : public ConsoleChannel {
24public:
27};
28} // namespace Poco
Definition: Algorithm.h:30