This file is indexed.

/usr/include/Synopsis/TypeAnalysis/Kit.hh is in libsynopsis0.12-dev 0.12-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
//
// Copyright (C) 2005 Stefan Seefeld
// All rights reserved.
// Licensed to the public under the terms of the GNU LGPL (>= 2),
// see the file COPYING for details.
//
#ifndef Synopsis_TypeAnalysis_Kit_hh_
#define Synopsis_TypeAnalysis_Kit_hh_

#include <Synopsis/TypeAnalysis/Type.hh>

namespace Synopsis
{
namespace TypeAnalysis
{

//. creates and remembers declared types.
class Kit
{
public:
  Kit();

  Type const *builtin(std::string const &name);
  Type const *enum_(std::string const &name);
  Type const *class_(std::string const &name);
  Type const *union_(std::string const &name);
  Type const *pointer(Type const *type);
  Type const *reference(Type const *type);
  Type const *array(Type const *type);
  Type const *pointer_to_member(Type const *container, Type const *member);
private:
};

}
}

#endif