dox/Rendering/vtkLightCollection.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00026
#ifndef __vtkLightC_h
00027
#define __vtkLightC_h
00028
00029
#include "vtkCollection.h"
00030
00031
class vtkLight;
00032
00033 class VTK_RENDERING_EXPORT vtkLightCollection :
public vtkCollection
00034 {
00035
public:
00036
static vtkLightCollection *
New();
00037 vtkTypeRevisionMacro(vtkLightCollection,
vtkCollection);
00038
virtual void PrintSelf(ostream& os,
vtkIndent indent);
00039
00041
void AddItem(
vtkLight *a);
00042
00045
vtkLight *GetNextItem();
00046
00047
protected:
00048 vtkLightCollection() {};
00049 ~vtkLightCollection() {};
00050
00051
00052
private:
00053
00054
void AddItem(
vtkObject *o) { this->
vtkCollection::AddItem(o); };
00055
00056
private:
00057 vtkLightCollection(
const vtkLightCollection&);
00058
void operator=(
const vtkLightCollection&);
00059 };
00060
00061
00062
#endif
00063