This commit is contained in:
Dane Springmeyer 2014-08-08 21:58:08 -07:00
parent bcc92c9693
commit 8ff987af6d
6 changed files with 15 additions and 3 deletions

View file

@ -27,6 +27,7 @@
// mapnik // mapnik
#include <mapnik/value.hpp> #include <mapnik/value.hpp>
#include <mapnik/unicode.hpp>
#include <mapnik/attribute.hpp> #include <mapnik/attribute.hpp>

View file

@ -30,6 +30,7 @@
#include <mapnik/attribute.hpp> #include <mapnik/attribute.hpp>
#include <mapnik/expression_node.hpp> #include <mapnik/expression_node.hpp>
#include <mapnik/color_factory.hpp> #include <mapnik/color_factory.hpp>
#include <mapnik/noncopyable.hpp>
// boost // boost
#include <boost/variant/static_visitor.hpp> #include <boost/variant/static_visitor.hpp>

View file

@ -28,6 +28,9 @@
#include <mapnik/noncopyable.hpp> #include <mapnik/noncopyable.hpp>
#include <mapnik/value_types.hpp> #include <mapnik/value_types.hpp>
// icu
#include <unicode/unistr.h>
// stl // stl
#include <vector> #include <vector>

View file

@ -30,7 +30,6 @@
// stl // stl
#include <string> #include <string>
#include <algorithm> #include <algorithm>
#include <locale>
namespace mapnik { namespace util { namespace mapnik { namespace util {

View file

@ -38,6 +38,9 @@
#include <string> #include <string>
#include <cmath> #include <cmath>
#include <memory> #include <memory>
#include <iosfwd>
#include <cstddef>
#include <new>
// icu // icu
#include <unicode/unistr.h> #include <unicode/unistr.h>
@ -118,7 +121,7 @@ struct equals
} }
template <typename T, typename U> template <typename T, typename U>
bool operator() (T const& /*lhs*/, U const& /*rhs*/) const bool operator() (T const&, U const&) const
{ {
return false; return false;
} }

View file

@ -27,10 +27,15 @@
#include <mapnik/config.hpp> #include <mapnik/config.hpp>
// icu // icu
#include <unicode/unistr.h> // for UnicodeString #include <unicode/uversion.h> // for U_NAMESPACE_QUALIFIER
// stl // stl
#include <iosfwd> #include <iosfwd>
#include <cstddef>
namespace U_ICU_NAMESPACE {
class UnicodeString;
}
namespace mapnik { namespace mapnik {