/usr/include/paraview/vtkPEquivalenceSet.h is in paraview-dev 5.0.1+dfsg1-4.
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 | /*=========================================================================
Program: earaView
Module: vtkPEquivalenceSet.h
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.
Copyright 2013 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
=========================================================================*/
// .NAME vtkPEquivalenceSet - distributed method of Equivalence
// .SECTION Description
// Same as EquivalenceSet, but resolving is a global operation.
// .SEE vtkEquivalenceSet
#ifndef vtkPEquivalenceSet_h
#define vtkPEquivalenceSet_h
#include "vtkPVVTKExtensionsDefaultModule.h" //needed for exports
#include "vtkEquivalenceSet.h"
class VTKPVVTKEXTENSIONSDEFAULT_EXPORT vtkPEquivalenceSet : public vtkEquivalenceSet
{
public:
vtkTypeMacro(vtkPEquivalenceSet,vtkEquivalenceSet);
void PrintSelf(ostream& os, vtkIndent indent);
static vtkPEquivalenceSet *New();
// Globally equivalent set IDs are reassigned to be sequential.
virtual int ResolveEquivalences ();
protected:
vtkPEquivalenceSet();
~vtkPEquivalenceSet();
private:
vtkPEquivalenceSet(const vtkPEquivalenceSet&); // Not implemented.
void operator=(const vtkPEquivalenceSet&); // Not implemented.
};
#endif /* vtkPEquivalenceSet_h */
|