This file is indexed.

/usr/include/caf/sb_actor.hpp is in libcaf-dev 0.13.2-3.

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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/******************************************************************************
 *                       ____    _    _____                                   *
 *                      / ___|  / \  |  ___|    C++                           *
 *                     | |     / _ \ | |_       Actor                         *
 *                     | |___ / ___ \|  _|      Framework                     *
 *                      \____/_/   \_|_|                                      *
 *                                                                            *
 * Copyright (C) 2011 - 2015                                                  *
 * Dominik Charousset <dominik.charousset (at) haw-hamburg.de>                *
 *                                                                            *
 * Distributed under the terms and conditions of the BSD 3-Clause License or  *
 * (at your option) under the terms and conditions of the Boost Software      *
 * License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE.       *
 *                                                                            *
 * If you did not receive a copy of the license files, see                    *
 * http://opensource.org/licenses/BSD-3-Clause and                            *
 * http://www.boost.org/LICENSE_1_0.txt.                                      *
 ******************************************************************************/

#ifndef CAF_FSM_ACTOR_HPP
#define CAF_FSM_ACTOR_HPP

#include <utility>
#include <type_traits>

#include "caf/event_based_actor.hpp"

namespace caf {

/**
 * A base class for state-based actors using the
 * Curiously Recurring Template Pattern
 * to initialize the derived actor with its `init_state` member.
 */
template <class Derived, class Base = event_based_actor>
class sb_actor : public Base {
public:
  static_assert(std::is_base_of<event_based_actor, Base>::value,
                "Base must be event_based_actor or a derived type");

  /**
   * Overrides {@link event_based_actor::make_behavior()} and sets
   * the initial actor behavior to `Derived::init_state.
   */
  behavior make_behavior() override {
    return static_cast<Derived*>(this)->init_state;
  }

 protected:
  using combined_type = sb_actor;

  template <class... Ts>
  sb_actor(Ts&&... xs) : Base(std::forward<Ts>(xs)...) {
    // nop
  }
};

} // namespace caf

#endif // CAF_FSM_ACTOR_HPP