This file is indexed.

/usr/include/osl/effect_util/effectUtil.h is in libosl-dev 0.8.0-1.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
40
#ifndef _EFFECTUTIL_H
#define _EFFECTUTIL_H

#include "osl/numEffectState.h"
#include "osl/container.h"

#include <iosfwd>
#include <cassert>

namespace osl
{
  namespace effect_util
  {
  /**
   * EffectState を活用するためのメソッド
   * NumSimpleEffect などの公開インターフェースで
   * 使って書けるコード
   */
  struct EffectUtil
  {
    /**
     * state の position に ptypeo があった場合を仮定して,脅威をoutに集める
     */
    template <class EvalT>
    static void findThreat(const NumEffectState& state, Square position,
			   PtypeO ptypeo, PieceVector& out);
    template <class EvalT>
    struct FindThreat;
    struct SafeCapture;
  };

  } // namespace effect_util
  using effect_util::EffectUtil;
} // namespace osl

#endif /* _EFFECTUTIL_H */
// ;;; Local Variables:
// ;;; mode:c++
// ;;; c-basic-offset:2
// ;;; End: