VTK
vtkImageReader2Collection.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageReader2Collection.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 =========================================================================*/
24 #ifndef vtkImageReader2Collection_h
25 #define vtkImageReader2Collection_h
26 
27 #include "vtkIOImageModule.h" // For export macro
28 #include "vtkCollection.h"
29 
30 class vtkImageReader2;
31 
33 {
34 public:
37  virtual void PrintSelf(ostream& os, vtkIndent indent);
38 
41 
44 
45  //BTX
47 
50  //ETX
52 
53 protected:
56 
57 
58 private:
59  // hide the standard AddItem from the user and the compiler.
60  void AddItem(vtkObject *o) { this->vtkCollection::AddItem(o); };
61 
62 private:
63  vtkImageReader2Collection(const vtkImageReader2Collection&); // Not implemented.
64  void operator=(const vtkImageReader2Collection&); // Not implemented.
65 };
66 
67 #endif
vtkImageReader2Collection
maintain a list of image readers
Definition: vtkImageReader2Collection.h:33
vtkImageReader2Collection::AddItem
void AddItem(vtkImageReader2 *)
vtkImageReader2Collection::~vtkImageReader2Collection
~vtkImageReader2Collection()
Definition: vtkImageReader2Collection.h:55
vtkCollectionSimpleIterator
void * vtkCollectionSimpleIterator
Definition: vtkCollection.h:47
vtkCollection.h
vtkIOImageModule.h
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkObject
abstract base class for most VTK objects
Definition: vtkObject.h:62
VTKIOIMAGE_EXPORT
#define VTKIOIMAGE_EXPORT
Definition: vtkIOImageModule.h:15
vtkCollection
create and manipulate unsorted lists of objects
Definition: vtkCollection.h:53
vtkImageReader2Collection::PrintSelf
virtual void PrintSelf(ostream &os, vtkIndent indent)
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkImageReader2
Superclass of binary file readers.
Definition: vtkImageReader2.h:58
vtkImageReader2Collection::GetNextItem
vtkImageReader2 * GetNextItem()
vtkImageReader2Collection::GetNextImageReader2
vtkImageReader2 * GetNextImageReader2(vtkCollectionSimpleIterator &cookie)
vtkImageReader2Collection::New
static vtkImageReader2Collection * New()
vtkCollection::AddItem
void AddItem(vtkObject *)
vtkImageReader2Collection::vtkImageReader2Collection
vtkImageReader2Collection()
Definition: vtkImageReader2Collection.h:54