This file is indexed.

/usr/include/paraview/pqRemoteCommandTemplateDialog.h is in paraview-dev 5.0.1+dfsg1-4.

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
#ifndef pqRemoteCommandTemplateDialog_h
#define pqRemoteCommandTemplateDialog_h
// .NAME pqRemoteCommandTemplateDialog - Dialog for configuring server side signals
// .SECTION Description

#include <QDialog>
#include <QLineEdit>
#include <QList>
#include <QString>

class pqRemoteCommandTemplateDialogUI;

class pqRemoteCommandTemplateDialog : public QDialog
{
Q_OBJECT

public:
  pqRemoteCommandTemplateDialog(QWidget *parent, Qt::WindowFlags f);
  ~pqRemoteCommandTemplateDialog();

  // Description:
  // Access to UI state
  void SetCommandName(QString name);
  QString GetCommandName();

  void SetCommandTemplate(QString templ);
  QString GetCommandTemplate();

  int GetModified(){ return this->Modified; }

private slots:
  void SetModified(){ ++this->Modified; }

private:
  int Modified;
  pqRemoteCommandTemplateDialogUI *Ui;
};

#endif