This file is indexed.

/usr/include/openrpt/OpenRPT/wrtembed/dmatrixrectconfig.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
#ifndef DMATRIXRECTCONFIG_H
#define DMATRIXRECTCONFIG_H

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

namespace Ui {
    class DMatrixRectConfig;
}

//dans le fichier dmtx.h l'enumaration des datamatrix carré commence à 24
class DMatrixRectConfig : public QWidget
{
    Q_OBJECT

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

    QString format();

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

private slots:
    void on__previewButton_clicked();
    void capacityRefresh(int i);
    void indexType(int index);

signals:
    void signalType(int index);

private:

    Ui::DMatrixRectConfig *ui;
    DMatrixPreview *_preview;

    //capacité à titre indicatif, possible erreur d'écriture
    static QString capacite[];
};

#endif // DMATRIXRECTCONFIG_H