Cloned library of VTK-5.0.0 with extra build files for internal package management.
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.
 
 
 
 
 
 

83 lines
3.0 KiB

/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkInformationObjectBaseKey.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 "vtkInformationObjectBaseKey.h"
#include "vtkInformation.h" // For vtkErrorWithObjectMacro
vtkCxxRevisionMacro(vtkInformationObjectBaseKey, "$Revision: 1.5 $");
//----------------------------------------------------------------------------
vtkInformationObjectBaseKey
::vtkInformationObjectBaseKey(const char* name, const char* location,
const char* requiredClass):
vtkInformationKey(name, location), RequiredClass(requiredClass)
{
vtkFilteringInformationKeyManager::Register(this);
}
//----------------------------------------------------------------------------
vtkInformationObjectBaseKey::~vtkInformationObjectBaseKey()
{
}
//----------------------------------------------------------------------------
void vtkInformationObjectBaseKey::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
void vtkInformationObjectBaseKey::Set(vtkInformation* info,
vtkObjectBase* value)
{
if(value && this->RequiredClass && !value->IsA(this->RequiredClass))
{
vtkErrorWithObjectMacro(
info,
"Cannot store object of type " << value->GetClassName()
<< " with key " << this->Location << "::" << this->Name
<< " which requires objects of type "
<< this->RequiredClass << ". Removing the key instead.");
this->SetAsObjectBase(info, 0);
return;
}
this->SetAsObjectBase(info, value);
}
//----------------------------------------------------------------------------
vtkObjectBase* vtkInformationObjectBaseKey::Get(vtkInformation* info)
{
return this->GetAsObjectBase(info);
}
//----------------------------------------------------------------------------
int vtkInformationObjectBaseKey::Has(vtkInformation* info)
{
return this->GetAsObjectBase(info)?1:0;
}
//----------------------------------------------------------------------------
void vtkInformationObjectBaseKey::ShallowCopy(vtkInformation* from,
vtkInformation* to)
{
this->Set(to, this->Get(from));
}
//----------------------------------------------------------------------------
void vtkInformationObjectBaseKey::Report(vtkInformation* info,
vtkGarbageCollector* collector)
{
this->ReportAsObjectBase(info, collector);
}