This file is indexed.

/usr/include/root/Reflex/Builder/EnumBuilder.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
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
// @(#)root/reflex:$Id: EnumBuilder.h 29288 2009-07-01 13:03:35Z axel $
// 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_EnumBuilder
#define Reflex_EnumBuilder

// Include files
#include "Reflex/Builder/TypeBuilder.h"
#include "Reflex/Member.h"

namespace Reflex {
// forward declarations
class Enum;

/**
 * @class EnumBuilder EnumBuilder.h Reflex/Builder/EnumBuilder.h
 * @author Stefan Roiser
 * @date 14/3/2005
 * @ingroup RefBld
 */
class RFLX_API EnumBuilder {
public:
   /** constructor */
   EnumBuilder(const char* name,
               const std::type_info & ti,
               unsigned int modifiers = 0);


   /** destructor */
   virtual ~EnumBuilder();


   /**
    * AddProperty will add a PropertyNth to the PropertyNth stack
    * which will be emptied with the next enum / item build
    * @param  key the PropertyNth key
    * @param  value the value of the PropertyNth
    * @return a reference to the building class
    */
   EnumBuilder& AddItem(const char* nam,
                        long value);


   /**
    * AddProperty will add a PropertyNth
    * @param  key the PropertyNth key
    * @param  value the value of the PropertyNth
    */
   EnumBuilder& AddProperty(const char* key,
                            Any value);


   /**
    * AddProperty will add a PropertyNth
    * @param  key the PropertyNth key
    * @param  value the value of the PropertyNth
    */
   EnumBuilder& AddProperty(const char* key,
                            const char* value);


   /*
    * ToType will return the currently produced Type (class)
    * @return the type currently being built
    */
   Type ToType();

private:
   /** current enum being built */
   Enum* fEnum;

   /** last added enum item */
   Member fLastMember;

};    // class EnumBuilder


/**
 * @class EnumBuilder EnumBuilder.h Reflex/Builder/EnumBuilder.h
 * @author Stefan Roiser
 * @ingroup RefBld
 * @date 30/3/2004
 */
template <typename T>
class EnumBuilderT  {
public:
   /** constructor */
   EnumBuilderT(unsigned int modifiers = 0);


   /** constructor */
   EnumBuilderT(const char* nam,
                unsigned int modifiers = 0);


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


   /**
    * AddItem add a new item in the enum
    * @param  Name item Name
    * @param  value the value of the item
    * @return a reference to the building class
    */
   EnumBuilderT& AddItem(const char* nam,
                         long value);


   /**
    * AddProperty will add a PropertyNth to the PropertyNth stack
    * which will be emptied with the next enum / item build
    * @param  key the PropertyNth key
    * @param  value the value of the PropertyNth
    * @return a reference to the building class
    */
   template <typename P>
   EnumBuilderT& AddProperty(const char* key,
                             P value);


   /*
    * ToType will return the currently produced Type (class)
    * @return the type currently being built
    */
   Type ToType();

private:
   /** the enums and values */
   EnumBuilder fEnumBuilderImpl;

};    // class EnumBuilder

} // namespace Reflex

//-------------------------------------------------------------------------------
template <typename T>
inline Reflex::EnumBuilderT<T>::EnumBuilderT(unsigned int modifiers)
//-------------------------------------------------------------------------------
   : fEnumBuilderImpl(Tools::Demangle(typeid(T)).c_str(),
                      typeid(T),
                      modifiers) {
}


//-------------------------------------------------------------------------------
template <typename T>
inline Reflex::EnumBuilderT<T>::EnumBuilderT(const char* nam,
                                             unsigned int modifiers)
//-------------------------------------------------------------------------------
   : fEnumBuilderImpl(nam,
                      typeid(UnknownType),
                      modifiers) {
}


//-------------------------------------------------------------------------------
template <typename T>
inline Reflex::EnumBuilderT<T>&
Reflex::EnumBuilderT<T
>::AddItem(const char* nam,
           long value) {
//-------------------------------------------------------------------------------
   fEnumBuilderImpl.AddItem(nam, value);
   return *this;
}


//-------------------------------------------------------------------------------
template <typename T> template <typename P>
inline Reflex::EnumBuilderT<T>&
Reflex::EnumBuilderT<T
>::AddProperty(const char* key,
               P value) {
//-------------------------------------------------------------------------------
   fEnumBuilderImpl.AddProperty(key, value);
   return *this;
}


//-------------------------------------------------------------------------------
template <typename T> inline Reflex::Type
Reflex::EnumBuilderT<T
>::ToType() {
//-------------------------------------------------------------------------------
   return fEnumBuilderImpl.ToType();
}


#endif // Reflex_EnumBuilder