This file is indexed.

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


#ifndef G__BaseClassInfo_H
#define G__BaseClassInfo_H

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

namespace Cint {

/*********************************************************************
* class G__BaseClassInfo
*
* Rene says OK
* 
*********************************************************************/
class 
#ifndef __CINT__
G__EXPORT
#endif
G__BaseClassInfo : public G__ClassInfo {
 public:
  ~G__BaseClassInfo() {}
  G__BaseClassInfo(G__ClassInfo &a);
  void Init(G__ClassInfo &a);

  long Offset() ;
  long Property();
  int IsValid();
  int Next();
  int Next(int onlydirect);
  int Prev();
  int Prev(int onlydirect);

 private:
  long basep;
  long derivedtagnum;
};
} // namespace Cint

using namespace Cint;
#endif