This commit is contained in:
Dane Springmeyer 2013-01-09 16:45:37 -08:00
parent a0c758df9e
commit 7aab2bca4f
4 changed files with 13 additions and 2 deletions

View file

@ -24,13 +24,19 @@
// mapnik
#include <mapnik/text_properties.hpp>
#include <mapnik/font_engine_freetype.hpp>
#include <mapnik/text_path.hpp>
#include <mapnik/noncopyable.hpp>
// stl
#include <list>
namespace mapnik
{
// fwd declares
class freetype_engine;
template <typename T> class face_manager;
class processed_text : mapnik::noncopyable
{
public:

View file

@ -29,6 +29,9 @@
#include <mapnik/feature.hpp>
#include <mapnik/marker.hpp>
#include <mapnik/marker_cache.hpp>
#include <mapnik/proj_transform.hpp>
#include <mapnik/ctrans.hpp>
#include <mapnik/font_engine_freetype.hpp>
#include <mapnik/processed_text.hpp>
#include <mapnik/text_path.hpp>

View file

@ -30,13 +30,14 @@
// boost
#include <boost/property_tree/ptree.hpp>
#include <boost/make_shared.hpp>
namespace mapnik
{
namespace formatting
{
using boost::property_tree::ptree;
using boost::property_tree::ptree;
void text_node::to_xml(ptree &xml) const
{

View file

@ -22,6 +22,7 @@
#include <mapnik/processed_text.hpp>
#include <mapnik/config_error.hpp>
#include <mapnik/font_engine_freetype.hpp>
namespace mapnik
{