This file is indexed.

/usr/include/Eris-1.3/Eris/Operations.h is in liberis-1.3-dev 1.3.23-6ubuntu1.

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
// This file may be redistributed and modified only under the terms of
// the GNU Lesser General Public License (See COPYING for details).
// Copyright (C) 2004 Alistair Riddoch

#ifndef ERIS_OPERATIONS_H
#define ERIS_OPERATIONS_H

#include <Atlas/Objects/Operation.h>

#include <Atlas/Objects/Generic.h>

namespace Atlas { namespace Objects { namespace Operation {

extern int ATTACK_NO;

class Attack : public Generic
{
  public:
    Attack() {
        (*this)->setType("attack", ATTACK_NO);
    }
};

extern int UNSEEN_NO;

class Unseen : public Generic
{
  public:
    Unseen() {
        (*this)->setType("unseen", UNSEEN_NO);
    }
};

} } }

#endif