VTK  9.1.0
vtkProgressObserver.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkProgressObserver.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
30#ifndef vtkProgressObserver_h
31#define vtkProgressObserver_h
32
33#include "vtkCommonExecutionModelModule.h" // For export macro
34#include "vtkObject.h"
35
36class VTKCOMMONEXECUTIONMODEL_EXPORT vtkProgressObserver : public vtkObject
37{
38public:
41 void PrintSelf(ostream& os, vtkIndent indent) override;
42
47 virtual void UpdateProgress(double amount);
48
50
53 vtkGetMacro(Progress, double);
55
56protected:
59
60 double Progress;
61
62private:
64 void operator=(const vtkProgressObserver&) = delete;
65};
66
67#endif
a simple class to control print indentation
Definition: vtkIndent.h:113
abstract base class for most VTK objects
Definition: vtkObject.h:73
Basic class to optionally replace vtkAlgorithm progress functionality.
static vtkProgressObserver * New()
~vtkProgressObserver() override
virtual void UpdateProgress(double amount)
The default behavior is to update the Progress data member and invoke a ProgressEvent.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.