/usr/include/vtk-5.8/vtkPTableToStructuredGrid.h is in libvtk5-dev 5.8.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkPTableToStructuredGrid.h
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.
=========================================================================*/
// .NAME vtkPTableToStructuredGrid - vtkTableToStructuredGrid specialization
// which handles distribution of the input table.
// .SECTION Description
// vtkPTableToStructuredGrid is vtkTableToStructuredGrid specialization
// which handles distribution of the input table.
// For starters, this assumes that the input table is only available on the root
// node.
#ifndef __vtkPTableToStructuredGrid_h
#define __vtkPTableToStructuredGrid_h
#include "vtkTableToStructuredGrid.h"
class vtkMultiProcessController;
class VTK_PARALLEL_EXPORT vtkPTableToStructuredGrid : public vtkTableToStructuredGrid
{
public:
static vtkPTableToStructuredGrid* New();
vtkTypeMacro(vtkPTableToStructuredGrid, vtkTableToStructuredGrid);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Get/Set the controller.
void SetController(vtkMultiProcessController*);
vtkGetObjectMacro(Controller, vtkMultiProcessController);
//BTX
protected:
vtkPTableToStructuredGrid();
~vtkPTableToStructuredGrid();
// Description:
// Convert input vtkTable to vtkStructuredGrid.
virtual int RequestData(vtkInformation* request,
vtkInformationVector** inputVector, vtkInformationVector* outputVector);
vtkMultiProcessController* Controller;
private:
vtkPTableToStructuredGrid(const vtkPTableToStructuredGrid&); // Not implemented.
void operator=(const vtkPTableToStructuredGrid&); // Not implemented.
//ETX
};
#endif
|