You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWTAI-Platform/3rd/VTK7.1/include/vtkStringOutputWindow.h

65 lines
1.8 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkStringOutputWindow.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkStringOutputWindow
* @brief File Specific output window class
*
* Writes debug/warning/error output to a log file instead of the console.
* To use this class, instantiate it and then call SetInstance(this).
*
*/
#ifndef vtkStringOutputWindow_h
#define vtkStringOutputWindow_h
#include "vtkCommonCoreModule.h" // For export macro
#include "vtkOutputWindow.h"
#include <sstream> // for ivar
class VTKCOMMONCORE_EXPORT vtkStringOutputWindow : public vtkOutputWindow
{
public:
vtkTypeMacro(vtkStringOutputWindow, vtkOutputWindow);
static vtkStringOutputWindow* New();
void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
/**
* Put the text into the log file.
* New lines are converted to carriage return new lines.
*/
void DisplayText(const char*) VTK_OVERRIDE;
/**
* Get the current output as a string
*/
std::string GetOutput() { return this->OStream.str(); };
protected:
vtkStringOutputWindow();
~vtkStringOutputWindow() VTK_OVERRIDE;
void Initialize();
std::ostringstream OStream;
private:
vtkStringOutputWindow(const vtkStringOutputWindow&) VTK_DELETE_FUNCTION;
void operator=(const vtkStringOutputWindow&) VTK_DELETE_FUNCTION;
};
#endif