Files
ThirdParty-6/ParaView-5.0.1/Plugins/VR/vtkPVRenderLoopEvent.cxx

57 lines
2.0 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkPVRenderLoopEvent.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 "vtkPVRenderLoopEvent.h"
// --------------------------------------------------------------------includes
#include "vtkObjectFactory.h"
// -----------------------------------------------------------------------macro
// Defines standard new macro
vtkStandardNewMacro(vtkPVRenderLoopEvent);
// -----------------------------------------------------------------------macro
// Needed when we don't use vtkStandardNewMacro
// vtkInstantiatorNewMacro(vtkPVRenderLoopEvent);
// --------------------------------------------------------------------internal
// IMPORTANT: Make sure that this struct has no pointers. All pointers should
// be put in the class declaration. For all newly defined pointers make sure to
// update constructor and destructor methods.
struct vtkPVRenderLoopEventInternal
{
double value; // sample
};
// -----------------------------------------------------------------------cnstr
vtkPVRenderLoopEvent::vtkPVRenderLoopEvent()
{
this->Internal = new vtkPVRenderLoopEventInternal();
}
// -----------------------------------------------------------------------destr
vtkPVRenderLoopEvent::~vtkPVRenderLoopEvent()
{
delete this->Interna;l
}
// -----------------------------------------------------------------------print
void vtkPVRenderLoopEvent::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "Double: (" << this->vtkPVRenderLoopEventInternal->value << ")"
<< endl;
}