/usr/include/qgis/qgsrelationadddlg.h is in libqgis-dev 2.8.6+dfsg-1build1.
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  | #ifndef QGSRELATIONADDDLG_H
#define QGSRELATIONADDDLG_H
#include <QDialog>
#include "ui_qgsrelationadddlgbase.h"
class QgsVectorLayer;
class GUI_EXPORT QgsRelationAddDlg : public QDialog, private Ui::QgsRelationAddDlgBase
{
    Q_OBJECT
  public:
    explicit QgsRelationAddDlg( QWidget *parent = 0 );
    void addLayers( QList<QgsVectorLayer* > layers );
    QString referencingLayerId();
    QString referencedLayerId();
    QList< QPair< QString, QString > > references();
    QString relationId();
    QString relationName();
  private slots:
    void on_mCbxReferencingLayer_currentIndexChanged( int index );
    void on_mCbxReferencedLayer_currentIndexChanged( int index );
  private:
    void loadLayerAttributes( QComboBox* cbx, QgsVectorLayer* layer );
    QMap< QString, QgsVectorLayer* > mLayers;
};
#endif // QGSRELATIONADDDLG_H
 |