Medical Imaging Interaction Toolkit  2023.12.99-f298153c
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
mitkLogBackendText.h
mitk::LogMessage
A single log message (log event) of the MITK log mechanism.
Definition: mitkLogMessage.h:29
mitk::LogBackendText
Abstract superclass for text-based log backends.
Definition: mitkLogBackendText.h:25
mitk::LogBackendCout
Default backend of the MITK log mechanism.
Definition: mitkLogBackendCout.h:25
mitk
Find image slices visible on a given plane.
Definition: RenderingTests.dox:1
MITKLOG_EXPORT
#define MITKLOG_EXPORT
Definition: MitkLogExports.h:15
mitk::LogBackendBase::OutputType
OutputType
Definition: mitkLogBackendBase.h:28