+ update attribute collector to handle 'orientation'

This commit is contained in:
Artem Pavlenko 2010-05-27 10:19:55 +00:00
parent 258a62616e
commit c020acb3a7

View file

@ -99,6 +99,14 @@ struct symbolizer_attributes : public boost::static_visitor<>
expression_attributes f_attr(names_);
boost::apply_visitor(f_attr,*name_expr);
}
expression_ptr const& orientation_expr = sym.get_orientation();
if (orientation_expr)
{
expression_attributes f_attr(names_);
boost::apply_visitor(f_attr,*orientation_expr);
}
}
void operator () (point_symbolizer const& sym)