ParaView
vtkPVTrivialProducer.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: $RCSfile: vtkPVTrivialProducer.h,v $
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 =========================================================================*/
24 #ifndef vtkPVTrivialProducer_h
25 #define vtkPVTrivialProducer_h
26 
27 #include "vtkPVVTKExtensionsCoreModule.h" // needed for export macro
28 #include "vtkTrivialProducer.h"
29 
30 struct vtkPVTrivialProducerInternal;
31 
32 class VTKPVVTKEXTENSIONSCORE_EXPORT vtkPVTrivialProducer : public vtkTrivialProducer
33 {
34 public:
35  static vtkPVTrivialProducer* New();
36  vtkTypeMacro(vtkPVTrivialProducer, vtkTrivialProducer);
37  void PrintSelf(ostream& os, vtkIndent indent);
38 
43  virtual void SetOutput(vtkDataObject* output);
44 
49  virtual void SetOutput(vtkDataObject* output, double time);
50 
56  virtual int ProcessRequest(vtkInformation*, vtkInformationVector**, vtkInformationVector*);
57 
58 protected:
61 
66  vtkPVTrivialProducerInternal* Internals;
67 
68 private:
69  vtkPVTrivialProducer(const vtkPVTrivialProducer&) VTK_DELETE_FUNCTION;
70  void operator=(const vtkPVTrivialProducer&) VTK_DELETE_FUNCTION;
71 };
72 
73 #endif
specialized subclass of vtkTrivialProducer that preserves the information about the whole extent of t...
vtkPVTrivialProducerInternal * Internals
Used to store any time step information.