This file is indexed.

/usr/include/svgpp/adapter/line.hpp is in libsvgpp-dev 1.2.3+dfsg1-3ubuntu1.

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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright Oleg Maximenko 2014.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://github.com/svgpp/svgpp for library home page.

#pragma once

#include <svgpp/definitions.hpp>
#include <svgpp/detail/adapt_context.hpp>
#include <boost/optional.hpp>
#include <boost/noncopyable.hpp>
#include <boost/mpl/set.hpp>

namespace svgpp
{

typedef boost::mpl::set4<tag::attribute::x1, tag::attribute::y1, tag::attribute::x2, tag::attribute::y2>
  line_shape_attributes;

template<class Length>
class collect_line_attributes_adapter: boost::noncopyable
{
public:
  template<class Context>
  bool on_exit_attributes(Context & context) const
  {
    typedef detail::unwrap_context<Context, tag::length_policy> length_policy_context;
    typedef typename length_policy_context::policy length_policy_t;

    typename length_policy_t::length_factory_type & converter 
      = length_policy_t::length_factory(length_policy_context::get(context));

    typename length_policy_t::length_factory_type::coordinate_type
      x1 = 0, y1 = 0, x2 = 0, y2 = 0;
    if (x1_)
      x1 = converter.length_to_user_coordinate(*x1_, tag::length_dimension::width());
    if (x2_)
      x2 = converter.length_to_user_coordinate(*x2_, tag::length_dimension::width());
    if (y1_)
      y1 = converter.length_to_user_coordinate(*y1_, tag::length_dimension::height());
    if (y2_)
      y2 = converter.length_to_user_coordinate(*y2_, tag::length_dimension::height());

    typedef detail::unwrap_context<Context, tag::basic_shapes_events_policy> basic_shapes_events;
    basic_shapes_events::policy::set_line(basic_shapes_events::get(context), x1, y1, x2, y2);
    return true;
  }

  void set(tag::attribute::x1, Length const & val) { x1_ = val; }
  void set(tag::attribute::y1, Length const & val) { y1_ = val; }
  void set(tag::attribute::x2, Length const & val) { x2_ = val; }
  void set(tag::attribute::y2, Length const & val) { y2_ = val; }

private:
  boost::optional<Length> x1_, y1_, x2_, y2_;
};

struct line_to_path_adapter
{
  template<class Context, class Coordinate>
  static void set_line(Context & context, Coordinate x1, Coordinate y1, Coordinate x2, Coordinate y2)
  {
    typedef detail::unwrap_context<Context, tag::path_events_policy> path_events;

    typename path_events::type & path_context = path_events::get(context);
    path_events::policy::path_move_to(path_context, x1, y1, tag::coordinate::absolute());
    path_events::policy::path_line_to(path_context, x2, y2, tag::coordinate::absolute());
    path_events::policy::path_exit(path_context);
  }
};

}