This file is indexed.

/usr/include/openrpt/OpenRPT/wrtembed/dmatrixsquareconfig.h is in libopenrpt-dev 3.3.12-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
#ifndef DMATRIXSQUARECONFIG_H
#define DMATRIXSQUARECONFIG_H

#include <QWidget>
#include <QString>
#include "dmatrixpreview.h"

namespace Ui {
    class DMatrixSquareConfig;
}



class DMatrixSquareConfig : public QWidget
{
    Q_OBJECT

public:
    explicit DMatrixSquareConfig(QWidget *parent = 0);
    ~DMatrixSquareConfig();

    QString format();

public slots:
    void setVisible2(bool visible = false);

protected slots:
    virtual void languageChange();

public slots:
    void setCursorValue(int i);

private slots:
    void on__previewButton_clicked();
    void formatRefresh(int i);
    void capacityRefresh(int i);

signals:
    void refreshWidget(int i);

private:

    Ui::DMatrixSquareConfig *ui;
    DMatrixPreview *_preview;

    static QString dimension[];
    static QString capacity[];
};

#endif // DMATRIXSQUARECONFIG_H