iwyu
This commit is contained in:
parent
d6587d791d
commit
70008ca781
11 changed files with 21 additions and 9 deletions
|
@ -25,6 +25,7 @@
|
||||||
|
|
||||||
// mapnik
|
// mapnik
|
||||||
#include <mapnik/color.hpp>
|
#include <mapnik/color.hpp>
|
||||||
|
#include <mapnik/config.hpp>
|
||||||
#include <mapnik/symbolizer.hpp>
|
#include <mapnik/symbolizer.hpp>
|
||||||
#include <mapnik/expression.hpp>
|
#include <mapnik/expression.hpp>
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,7 @@ struct MAPNIK_DECL debug_symbolizer :
|
||||||
{
|
{
|
||||||
debug_symbolizer() : symbolizer_base() {}
|
debug_symbolizer() : symbolizer_base() {}
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // DEBUG_SYMBOLIZER_HPP
|
#endif // DEBUG_SYMBOLIZER_HPP
|
||||||
|
|
|
@ -24,8 +24,9 @@
|
||||||
#define MAPNIK_LINE_PATTERN_SYMBOLIZER_HPP
|
#define MAPNIK_LINE_PATTERN_SYMBOLIZER_HPP
|
||||||
|
|
||||||
// mapnik
|
// mapnik
|
||||||
|
#include <mapnik/config.hpp>
|
||||||
#include <mapnik/symbolizer.hpp>
|
#include <mapnik/symbolizer.hpp>
|
||||||
//#include <boost/shared_ptr.hpp>
|
#include <mapnik/path_expression.hpp>
|
||||||
|
|
||||||
namespace mapnik
|
namespace mapnik
|
||||||
{
|
{
|
||||||
|
|
|
@ -24,6 +24,8 @@
|
||||||
#define MAPNIK_LINE_SYMBOLIZER_HPP
|
#define MAPNIK_LINE_SYMBOLIZER_HPP
|
||||||
|
|
||||||
// mapnik
|
// mapnik
|
||||||
|
#include <mapnik/color.hpp>
|
||||||
|
#include <mapnik/config.hpp>
|
||||||
#include <mapnik/stroke.hpp>
|
#include <mapnik/stroke.hpp>
|
||||||
#include <mapnik/symbolizer.hpp>
|
#include <mapnik/symbolizer.hpp>
|
||||||
#include <mapnik/enumeration.hpp>
|
#include <mapnik/enumeration.hpp>
|
||||||
|
|
|
@ -24,12 +24,13 @@
|
||||||
#define MAPNIK_MARKERS_SYMBOLIZER_HPP
|
#define MAPNIK_MARKERS_SYMBOLIZER_HPP
|
||||||
|
|
||||||
//mapnik
|
//mapnik
|
||||||
#include <mapnik/symbolizer.hpp>
|
|
||||||
#include <mapnik/parse_path.hpp>
|
|
||||||
#include <mapnik/color.hpp>
|
#include <mapnik/color.hpp>
|
||||||
|
#include <mapnik/config.hpp>
|
||||||
#include <mapnik/stroke.hpp>
|
#include <mapnik/stroke.hpp>
|
||||||
|
#include <mapnik/symbolizer.hpp>
|
||||||
#include <mapnik/enumeration.hpp>
|
#include <mapnik/enumeration.hpp>
|
||||||
#include <mapnik/expression.hpp>
|
#include <mapnik/expression.hpp>
|
||||||
|
#include <mapnik/path_expression.hpp>
|
||||||
|
|
||||||
// boost
|
// boost
|
||||||
#include <boost/optional.hpp>
|
#include <boost/optional.hpp>
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#define MAPNIK_POINT_SYMBOLIZER_HPP
|
#define MAPNIK_POINT_SYMBOLIZER_HPP
|
||||||
|
|
||||||
// mapnik
|
// mapnik
|
||||||
|
#include <mapnik/config.hpp>
|
||||||
#include <mapnik/symbolizer.hpp>
|
#include <mapnik/symbolizer.hpp>
|
||||||
#include <mapnik/enumeration.hpp>
|
#include <mapnik/enumeration.hpp>
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,8 @@
|
||||||
#define MAPNIK_POLYGON_PATTERN_SYMBOLIZER_HPP
|
#define MAPNIK_POLYGON_PATTERN_SYMBOLIZER_HPP
|
||||||
|
|
||||||
// mapnik
|
// mapnik
|
||||||
|
#include <mapnik/color.hpp>
|
||||||
|
#include <mapnik/config.hpp>
|
||||||
#include <mapnik/symbolizer.hpp>
|
#include <mapnik/symbolizer.hpp>
|
||||||
#include <mapnik/enumeration.hpp>
|
#include <mapnik/enumeration.hpp>
|
||||||
#include <mapnik/gamma_method.hpp>
|
#include <mapnik/gamma_method.hpp>
|
||||||
|
|
|
@ -25,8 +25,8 @@
|
||||||
|
|
||||||
// mapnik
|
// mapnik
|
||||||
#include <mapnik/color.hpp>
|
#include <mapnik/color.hpp>
|
||||||
|
#include <mapnik/config.hpp>
|
||||||
#include <mapnik/symbolizer.hpp>
|
#include <mapnik/symbolizer.hpp>
|
||||||
#include <mapnik/enumeration.hpp>
|
|
||||||
#include <mapnik/gamma_method.hpp>
|
#include <mapnik/gamma_method.hpp>
|
||||||
|
|
||||||
namespace mapnik
|
namespace mapnik
|
||||||
|
|
|
@ -24,14 +24,17 @@
|
||||||
#define MAPNIK_RASTER_SYMBOLIZER_HPP
|
#define MAPNIK_RASTER_SYMBOLIZER_HPP
|
||||||
|
|
||||||
// mapnik
|
// mapnik
|
||||||
|
#include <mapnik/config.hpp>
|
||||||
#include <mapnik/symbolizer.hpp>
|
#include <mapnik/symbolizer.hpp>
|
||||||
#include <mapnik/raster_colorizer.hpp>
|
#include <mapnik/raster_colorizer.hpp>
|
||||||
#include <mapnik/image_scaling.hpp>
|
#include <mapnik/image_scaling.hpp>
|
||||||
|
|
||||||
// boost
|
// boost
|
||||||
#include <boost/shared_ptr.hpp>
|
|
||||||
#include <boost/optional.hpp>
|
#include <boost/optional.hpp>
|
||||||
|
|
||||||
|
//stl
|
||||||
|
#include <string>
|
||||||
|
|
||||||
namespace mapnik
|
namespace mapnik
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -24,11 +24,13 @@
|
||||||
#define MAPNIK_SHIELD_SYMBOLIZER_HPP
|
#define MAPNIK_SHIELD_SYMBOLIZER_HPP
|
||||||
|
|
||||||
// mapnik
|
// mapnik
|
||||||
|
#include <mapnik/config.hpp>
|
||||||
|
#include <mapnik/color.hpp>
|
||||||
#include <mapnik/symbolizer.hpp>
|
#include <mapnik/symbolizer.hpp>
|
||||||
|
#include <mapnik/expression.hpp>
|
||||||
#include <mapnik/text_symbolizer.hpp>
|
#include <mapnik/text_symbolizer.hpp>
|
||||||
|
|
||||||
// boost
|
// boost
|
||||||
#include <boost/shared_ptr.hpp>
|
|
||||||
#include <boost/tuple/tuple.hpp>
|
#include <boost/tuple/tuple.hpp>
|
||||||
|
|
||||||
namespace mapnik
|
namespace mapnik
|
||||||
|
|
|
@ -24,9 +24,7 @@
|
||||||
#include <mapnik/markers_symbolizer.hpp>
|
#include <mapnik/markers_symbolizer.hpp>
|
||||||
#include <mapnik/value.hpp>
|
#include <mapnik/value.hpp>
|
||||||
#include <mapnik/attribute.hpp>
|
#include <mapnik/attribute.hpp>
|
||||||
|
#include <mapnik/parse_path.hpp>
|
||||||
// boost
|
|
||||||
#include <boost/make_shared.hpp>
|
|
||||||
|
|
||||||
namespace mapnik {
|
namespace mapnik {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue