This file is indexed.

/usr/include/root/Reflex/Builder/NamespaceBuilder.h is in libroot-core-dev 5.34.30-0ubuntu8.

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
// @(#)root/reflex:$Id$
// Author: Stefan Roiser 2004

// Copyright CERN, CH-1211 Geneva 23, 2004-2006, All rights reserved.
//
// Permission to use, copy, modify, and distribute this software for any
// purpose is hereby granted without fee, provided that this copyright and
// permissions notice appear in all copies and derivatives.
//
// This software is provided "as is" without express or implied warranty.

#ifndef Reflex_NamespaceBuilder
#define Reflex_NamespaceBuilder

// Include files
#include "Reflex/Scope.h"


namespace Reflex {
/**
 * @class NamespaceBuilder NamespaceBuilder.h Reflex/Builder/NamespaceBuilder.h
 * @author Stefan Roiser
 * @ingroup RefBld
 * @date 30/3/2004
 */
class RFLX_API NamespaceBuilder  {
public:
   /** constructor */
   NamespaceBuilder(const char* nam);


   /** destructor */
   virtual ~NamespaceBuilder() {}

   /** AddProperty will add a PropertyNth
    * @param  key the PropertyNth key
    * @param  value the value of the PropertyNth
    * @return a reference to the building class
    */
   NamespaceBuilder& AddProperty(const char* key,
                                 Any value);
   NamespaceBuilder& AddProperty(const char* key,
                                 const char* value);

   /**
    * ToScope will return the currently being built namespace
    * @return namespace currently being built
    */
   Scope ToScope();

private:
   /** the namespace */
   Scope fNamespace;

};    // class NamespaceBuilder

} // namespace Reflex


#endif // Reflex_NamespaceBuilder