ITK  4.0.0
Insight Segmentation and Registration Toolkit
itkLoggerOutput.h
Go to the documentation of this file.
00001 /*=========================================================================
00002  *
00003  *  Copyright Insight Software Consortium
00004  *
00005  *  Licensed under the Apache License, Version 2.0 (the "License");
00006  *  you may not use this file except in compliance with the License.
00007  *  You may obtain a copy of the License at
00008  *
00009  *         http://www.apache.org/licenses/LICENSE-2.0.txt
00010  *
00011  *  Unless required by applicable law or agreed to in writing, software
00012  *  distributed under the License is distributed on an "AS IS" BASIS,
00013  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014  *  See the License for the specific language governing permissions and
00015  *  limitations under the License.
00016  *
00017  *=========================================================================*/
00018 /*=========================================================================
00019  *
00020  *  Portions of this file are subject to the VTK Toolkit Version 3 copyright.
00021  *
00022  *  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00023  *
00024  *  For complete copyright, license and disclaimer of warranty information
00025  *  please refer to the NOTICE file at the top of the ITK source tree.
00026  *
00027  *=========================================================================*/
00028 #ifndef __itkLoggerOutput_h
00029 #define __itkLoggerOutput_h
00030 
00031 #include "itkOutputWindow.h"
00032 #include "itkLogger.h"
00033 
00034 namespace itk
00035 {
00050 class ITKCommon_EXPORT LoggerOutput:public OutputWindow
00051 {
00052 public:
00054   typedef LoggerOutput               Self;
00055   typedef OutputWindow               Superclass;
00056   typedef SmartPointer< Self >       Pointer;
00057   typedef SmartPointer< const Self > ConstPointer;
00058 
00060   itkTypeMacro(LoggerOutput, OutputWindow);
00061 
00062   itkNewMacro(LoggerOutput);
00063 
00064   typedef Logger *LoggerType;
00065 
00067   virtual void DisplayText(const char *t);
00068 
00072   virtual void DisplayErrorText(const char *t);
00073 
00077   virtual void DisplayWarningText(const char *t);
00078 
00082   virtual void DisplayGenericOutputText(const char *t);
00083 
00087   virtual void DisplayDebugText(const char *t);
00088 
00089   itkSetMacro(Logger, LoggerType);
00090 
00091   itkGetConstMacro(Logger, LoggerType);
00092 
00093   virtual void OverrideITKWindow()
00094   {
00095     itk::OutputWindow::SetInstance(this);
00096   }
00097 
00098 protected:
00099   LoggerOutput():m_Logger(0) {}
00100   virtual ~LoggerOutput() {}
00101   virtual void PrintSelf(std::ostream & os, Indent indent) const;
00102 
00103 private:
00104   Logger *m_Logger;
00105 };
00106 } // end namespace itk
00107 
00108 #endif  // __itkLoggerOutput_h
00109