VTK
vtkMRCReader.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMRCReader.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 =========================================================================*/
26 #ifndef vtkMRCReader_h
27 #define vtkMRCReader_h
28 
29 #include "vtkImageAlgorithm.h"
30 #include "vtkIOImageModule.h" // For export macro
31 
32 class vtkInformation;
34 
36 {
37 public:
38  static vtkMRCReader* New();
40 
41  void PrintSelf(ostream& stream, vtkIndent indent);
42 
43  // .Description
44  // Get/Set the file to read
45  vtkSetStringMacro(FileName);
46  vtkGetStringMacro(FileName);
47 
48 protected:
49  vtkMRCReader();
50  virtual ~vtkMRCReader();
51 
52  virtual int RequestInformation(vtkInformation* request,
53  vtkInformationVector** inputVector,
54  vtkInformationVector* outputVector);
55  virtual void ExecuteDataWithInformation(vtkDataObject *output,
56  vtkInformation* outInfo);
57 
58  char* FileName;
59 
60 private:
61  vtkMRCReader(const vtkMRCReader&); // Not implemented
62  void operator=(const vtkMRCReader&); // Not implemented
63  class vtkInternal;
64  vtkInternal* Internals;
65 
66 };
67 
68 #endif
Store vtkAlgorithm input/output information.
a simple class to control print indentation
Definition: vtkIndent.h:38
read MRC image files
Definition: vtkMRCReader.h:35
Generic algorithm superclass for image algs.
Store zero or more vtkInformation instances.
static vtkAlgorithm * New()
#define VTKIOIMAGE_EXPORT
general representation of visualization data
Definition: vtkDataObject.h:64