This file is indexed.

/usr/include/globjects/base/StaticStringSource.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
#pragma once

#include <string>

#include <globjects/globjects_api.h>
#include <globjects/base/AbstractStringSource.h>


namespace globjects 
{


/** \brief StaticStringSource is a StringSource using an std::string as source.

    The string can be queried with string().
    
    \see StringSource
 */
class GLOBJECTS_API StaticStringSource : public AbstractStringSource
{
public:
    StaticStringSource(const std::string & string);
    StaticStringSource(const char * data, size_t length);

    virtual std::string shortInfo() const override;
    virtual std::string string() const override;

    void setString(const std::string & string);

protected:
    std::string m_string;
};


} // namespace globjects