This file is indexed.

/usr/include/globjects/base/AbstractFunctionCall.h is in libglobjects-dev 1.1.0-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
#pragma once

#include <globjects/globjects_api.h>


namespace globjects
{

/**
* @brief
*   The interface for a callable function with variadic argument types.
*
* @see
*   FunctionCall
*/
class GLOBJECTS_API AbstractFunctionCall
{
public:
    /**
    *  @brief
    *    Constructor
    */
    AbstractFunctionCall();

    /**
    * @brief
    *    Virtual destructor
    *
    * Required for correct cleanup of subclasses
    */
    virtual ~AbstractFunctionCall();

    /**
    * @brief
    *   Entry point for the main functionality of a subclass
    *
    * As this interface represents some kind of method object,
    * a subclass defines this operator to implement its full behavior.
    */
    virtual void operator()() = 0;

    /**
    * @brief
    *   Accessor for an arbitrary identifier that can be used as identity
    *
    * @return
    *   An identifier for identity tracking
    */
    virtual void * identifier() const = 0;
};


} // namespace globjects