Skip to content
Snippets Groups Projects
Commit aab8200b authored by Ken Martin's avatar Ken Martin
Browse files

fix some header testing issues

minor changes
parent 9875d9b5
No related branches found
No related tags found
No related merge requests found
......@@ -27,24 +27,25 @@ PURPOSE. See the above copyright notice for more information.
class VTKRENDERINGOPENVR_EXPORT vtkOpenVRInteractorStyle : public vtkInteractorStyle3D
{
public:
static vtkOpenVRInteractorStyle *New();
vtkTypeMacro(vtkOpenVRInteractorStyle, vtkInteractorStyle3D);
//@{
/**
* Override Middle Button to load next camera position
*/
void OnMiddleButtonDown() VTK_OVERRIDE;
void OnMiddleButtonUp() VTK_OVERRIDE;
//@}
static vtkOpenVRInteractorStyle *New();
vtkTypeMacro(vtkOpenVRInteractorStyle, vtkInteractorStyle3D);
void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
//@{
/**
* Override Middle Button to load next camera position
*/
void OnMiddleButtonDown() VTK_OVERRIDE;
void OnMiddleButtonUp() VTK_OVERRIDE;
//@}
protected:
vtkOpenVRInteractorStyle();
~vtkOpenVRInteractorStyle() VTK_OVERRIDE;
vtkOpenVRInteractorStyle();
~vtkOpenVRInteractorStyle() VTK_OVERRIDE;
private:
vtkOpenVRInteractorStyle(const vtkOpenVRInteractorStyle&) VTK_DELETE_FUNCTION; // Not implemented.
void operator=(const vtkOpenVRInteractorStyle&)VTK_DELETE_FUNCTION; // Not implemented.
vtkOpenVRInteractorStyle(const vtkOpenVRInteractorStyle&) VTK_DELETE_FUNCTION; // Not implemented.
void operator=(const vtkOpenVRInteractorStyle&) VTK_DELETE_FUNCTION; // Not implemented.
};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment