This file is indexed.

/usr/include/attica/publisherfield.h is in libattica-dev 0.3.0-0ubuntu2.

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

#include "buildservice.h"
#include "atticaclient_export.h"

namespace Attica {

class ATTICA_EXPORT PublisherField
{
public:
    typedef QList<PublisherField> List;
    class Parser;

    PublisherField();
    PublisherField(const PublisherField& other);
    PublisherField& operator=(const PublisherField& other);
    ~PublisherField();

    void setName(const QString& value);
    QString name() const;

    void setType(const QString& value);
    QString type() const;

    void setData(const QString& value);
    QString data() const;

    bool isValid() const;

private:
  class Private;
  QSharedDataPointer<Private> d;
};

} // namespace Attica

#endif // PUBLISHERFIELD_H