Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
mitkLogBackendCout.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef mitkLogBackendCout_h
14 #define mitkLogBackendCout_h
15 
16 #include <mitkLogBackendText.h>
17 
18 namespace mitk
19 {
26  {
27  public:
29  ~LogBackendCout() override;
30 
31  void ProcessMessage(const LogMessage &message) override;
32 
38  void SetFull(bool full);
39 
40  OutputType GetOutputType() const override;
41 
42  private:
43  bool m_UseFullOutput;
44  };
45 }
46 
47 #endif
#define MITKLOG_EXPORT
Default backend of the MITK log mechanism.
~LogBackendCout() override
void SetFull(bool full)
Sets the formatting mode.
void ProcessMessage(const LogMessage &message) override
Called by the MITK log mechanism if the object is registered and a log message is emitted.
OutputType GetOutputType() const override
Abstract superclass for text-based log backends.
Find image slices visible on a given plane.
A single log message (log event) of the MITK log mechanism.