This file is indexed.

/usr/include/root/Typedf.h is in libroot-core-dev 5.34.00-2.

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
/* /% C++ %/ */
/***********************************************************************
 * cint (C/C++ interpreter)
 ************************************************************************
 * Header file Typedf.h
 ************************************************************************
 * Description:
 *  Extended Run Time Type Identification API
 ************************************************************************
 * Copyright(c) 1995~1999  Masaharu Goto 
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/


#ifndef G__TYPEDEFINFO_H
#define G__TYPEDEFINFO_H 


#ifndef G__API_H
#include "Api.h"
#endif

namespace Cint {

/*********************************************************************
* class G__TypedefInfo
*
* 
*********************************************************************/
class 
#ifndef __CINT__
G__EXPORT
#endif
G__TypedefInfo : public G__TypeInfo {
 public:
  ~G__TypedefInfo() {}
  G__TypedefInfo() { Init(); }
  void Init();
  G__TypedefInfo(const char *typenamein) { Init(typenamein); } 
  void Init(const char *typenamein);
  G__TypedefInfo(int typenumin) { Init(typenumin); } 
  void Init(int typenumin);
  G__ClassInfo EnclosingClassOfTypedef();

  const char *Title() ;
  void SetGlobalcomp(int globalcomp);
  int IsValid();
  int SetFilePos(const char* fname);
  int Next();

  /* added with G__TYPEDEFFPOS */
  const char *FileName();
  int LineNumber();

  static int GetNumTypedefs();
};

} // namespace Cint

using namespace Cint;
#endif