You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.8 KiB
63 lines
1.8 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkOverrideInformation.cxx,v $
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
#include "vtkOverrideInformation.h"
|
|
|
|
#include "vtkObjectFactory.h"
|
|
|
|
vtkCxxRevisionMacro(vtkOverrideInformation, "$Revision: 1.8 $");
|
|
vtkStandardNewMacro(vtkOverrideInformation);
|
|
vtkCxxSetObjectMacro(vtkOverrideInformation,ObjectFactory,vtkObjectFactory);
|
|
|
|
vtkOverrideInformation::vtkOverrideInformation()
|
|
{
|
|
this->ClassOverrideName = 0;
|
|
this->ClassOverrideWithName = 0;
|
|
this->Description = 0;
|
|
this->ObjectFactory = 0;
|
|
}
|
|
|
|
vtkOverrideInformation::~vtkOverrideInformation()
|
|
{
|
|
delete [] this->ClassOverrideName;
|
|
delete [] this->ClassOverrideWithName;
|
|
delete [] this->Description;
|
|
if(this->ObjectFactory)
|
|
{
|
|
this->ObjectFactory->Delete();
|
|
}
|
|
}
|
|
|
|
|
|
void vtkOverrideInformation::PrintSelf(ostream& os,
|
|
vtkIndent indent)
|
|
{
|
|
this->Superclass::PrintSelf(os, indent);
|
|
os << indent
|
|
<< "Override: " << this->ClassOverrideName
|
|
<< "\nWith: " << this->ClassOverrideWithName
|
|
<< "\nDescription: " << this->Description;
|
|
os << indent << "From Factory:\n";
|
|
if(this->ObjectFactory)
|
|
{
|
|
this->ObjectFactory->PrintSelf(os, indent.GetNextIndent());
|
|
}
|
|
else
|
|
{
|
|
vtkIndent n = indent.GetNextIndent();
|
|
os << n << "(NULL)\n";
|
|
}
|
|
}
|
|
|
|
|
|
|