This file is indexed.

/usr/include/qt5qevercloud/EventLoopFinisher.h is in qt5qevercloud-dev 3.0.3+ds-3.

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
/**
 * Original work: Copyright (c) 2014 Sergey Skoblikov
 * Modified work: Copyright (c) 2015-2016 Dmitry Ivanov
 *
 * This file is a part of QEverCloud project and is distributed under the terms of MIT license:
 * https://opensource.org/licenses/MIT
 */

#ifndef QEVERCLOUD_EVENT_LOOP_FINISHER_H
#define QEVERCLOUD_EVENT_LOOP_FINISHER_H

#include "qt4helpers.h"
#include "export.h"
#include <QObject>
#include <QEventLoop>

namespace qevercloud {

QT_FORWARD_DECLARE_CLASS(EventLoopFinisherPrivate)

class QEVERCLOUD_EXPORT EventLoopFinisher: public QObject
{
    Q_OBJECT
public:
    explicit EventLoopFinisher(QEventLoop * loop, int exitCode, QObject * parent = Q_NULLPTR);
    ~EventLoopFinisher();

public Q_SLOTS:
    void stopEventLoop();

private:
    EventLoopFinisherPrivate * const d_ptr;
    Q_DECLARE_PRIVATE(EventLoopFinisher)
};

} // namespace qevercloud

#endif // QEVERCLOUD_EVENT_LOOP_FINISHER_H