This file is indexed.

/usr/include/qgis/qgsfeaturemodel.h is in libqgis-dev 2.14.11+dfsg-3+deb9u1.

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

#include "qgsfeature.h" // QgsFeatureId
#include <QModelIndex>

class QgsFeatureModel
{
  public:
    virtual ~QgsFeatureModel() {}

    virtual QModelIndex fidToIndex( QgsFeatureId fid ) = 0;
};

#endif // QGSFEATUREMODEL_H