/*========================================================================= Program: Visualization Toolkit Module: vtkInteractorStyleSwitchBase.cxx 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 "vtkInteractorStyleSwitchBase.h" #include "vtkObjectFactory.h" // This is largely here to confirm the approach works, and will be replaced // with standard factory override logic in the modularized source tree. //------------------------------------------------------------------------------ vtkObjectFactoryNewMacro(vtkInteractorStyleSwitchBase); //------------------------------------------------------------------------------ vtkInteractorStyleSwitchBase::vtkInteractorStyleSwitchBase() = default; //------------------------------------------------------------------------------ vtkInteractorStyleSwitchBase::~vtkInteractorStyleSwitchBase() = default; //------------------------------------------------------------------------------ vtkRenderWindowInteractor* vtkInteractorStyleSwitchBase::GetInteractor() { static bool warned = false; if (!warned && strcmp(this->GetClassName(), "vtkInteractorStyleSwitchBase") == 0) { vtkWarningMacro("Warning: Link to vtkInteractionStyle for default style selection."); warned = true; } return nullptr; } //------------------------------------------------------------------------------ void vtkInteractorStyleSwitchBase::PrintSelf(ostream& os, vtkIndent indent) { this->Superclass::PrintSelf(os, indent); }