This file is indexed.

/usr/include/marble/TourPlayback.h is in libmarble-dev 4:4.13.0-0ubuntu1.

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
#ifndef TOURPLAYBACK_H
#define TOURPLAYBACK_H

#include <QObject>

#include "marble_export.h"

namespace Marble
{

class GeoDataCoordinates;
class GeoDataTour;
class GeoDataTourPrimitive;

class TourPlaybackPrivate;
class MARBLE_EXPORT TourPlayback : public QObject
{
    Q_OBJECT
public:
    explicit TourPlayback(QObject *parent);
    ~TourPlayback();

    bool isPlaying() const;

    void setTour(const GeoDataTour *tour);

public Q_SLOTS:
    void play();
    void pause();
    void stop();

Q_SIGNALS:
    void finished();
    void paused();
    void stopped();
    void centerOn(const GeoDataCoordinates &coordinates);

protected:
    TourPlaybackPrivate * const d_ptr;

private:
    Q_DECLARE_PRIVATE(TourPlayback)
    Q_PRIVATE_SLOT(d_ptr, void processNextPrimitive())
    Q_PRIVATE_SLOT(d_ptr, void bounceToCurrentPrimitive())
    Q_PRIVATE_SLOT(d_ptr, void playSoundCue())
    Q_PRIVATE_SLOT(d_ptr, void stopPlaying() )

};

} // namespace Marble

#endif // TOURPLAYBACK_H