This file is indexed.

/usr/include/root/Reflex/Callback.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
// @(#)root/reflex:$Id: Callback.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_Callback
#define Reflex_Callback

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


namespace Reflex {
// forward declarations
class Type;
class Member;

/**
 * @class Callback Callback.h Reflex/Callback.h
 * @author Pere Mato
 * @date 12/11/2004
 * @ingroup Ref
 */
class RFLX_API ICallback {
public:
   /** constructor */
   ICallback() {}

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

   /**
    * operator call (virtual)
    */
   virtual void operator ()(const Type&) = 0;
   virtual void operator ()(const Member&) = 0;

};    // class ICallback


RFLX_API void InstallClassCallback(ICallback* cb);
RFLX_API void UninstallClassCallback(ICallback* cb);
RFLX_API void FireClassCallback(const Type&);
RFLX_API void FireFunctionCallback(const Member&);

} // namespace Reflex

#endif // Reflex_Callback