This file is indexed.

/usr/include/KWWidgets/vtkKWStateMachineWriter.h is in libkwwidgets1-dev 1.0.0~cvs20100930-8.

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
60
61
62
63
64
65
66
67
68
/*=========================================================================

  Module:    $RCSfile: vtkKWStateMachineWriter.h,v $

  Copyright (c) Kitware, Inc.
  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 vtkKWStateMachineWriter - a state machine writer base-class.
// .SECTION Description
// This class is the basis for a state machine writer. 
// A state machine is defined by a set of states, a set of inputs and a
// transition matrix that defines for each pair of (state,input) what is
// the next state to assume.
// .SECTION Thanks
// This work is part of the National Alliance for Medical Image
// Computing (NAMIC), funded by the National Institutes of Health
// through the NIH Roadmap for Medical Research, Grant U54 EB005149.
// Information on the National Centers for Biomedical Computing
// can be obtained from http://nihroadmap.nih.gov/bioinformatics.
// .SECTION See Also
// vtkKWStateMachineDOTWriter vtkKWStateMachine

#ifndef __vtkKWStateMachineWriter_h
#define __vtkKWStateMachineWriter_h

#include "vtkObject.h"
#include "vtkKWWidgets.h" // Needed for export symbols directives

class vtkKWStateMachine;

class KWWidgets_EXPORT vtkKWStateMachineWriter : public vtkObject
{
public:
  vtkTypeRevisionMacro(vtkKWStateMachineWriter, vtkObject);
  void PrintSelf(ostream& os, vtkIndent indent);

  // Description:
  // Set/Get state machine to write.
  vtkGetObjectMacro(Input, vtkKWStateMachine);
  virtual void SetInput(vtkKWStateMachine*);

  // Description:
  // Set/Get if the writer should output transitions originating and leading
  // to the same node (self loops).
  vtkSetMacro(WriteSelfLoop, int);
  vtkGetMacro(WriteSelfLoop, int);
  vtkBooleanMacro(WriteSelfLoop, int);

protected:
  vtkKWStateMachineWriter();
  ~vtkKWStateMachineWriter();

  vtkKWStateMachine *Input;
  int WriteSelfLoop;

private:

  vtkKWStateMachineWriter(const vtkKWStateMachineWriter&); // Not implemented
  void operator=(const vtkKWStateMachineWriter&); // Not implemented
};

#endif