Changeset 490 for trunk/include/mapnik/text_symbolizer.hpp
- Timestamp:
- 07/02/07 09:39:08 (3 years ago)
- Files:
-
- 1 modified
-
trunk/include/mapnik/text_symbolizer.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/mapnik/text_symbolizer.hpp
r488 r490 29 29 // boost 30 30 #include <boost/tuple/tuple.hpp> 31 #include <boost/shared_ptr.hpp> 31 32 // mapnik 32 33 #include <mapnik/color.hpp> 34 #include <mapnik/graphics.hpp> 33 35 34 36 namespace mapnik … … 75 77 void set_avoid_edges(bool avoid); 76 78 bool get_avoid_edges() const; 79 void set_minimum_distance(double distance); 80 double get_minimum_distance() const; 77 81 void set_allow_overlap(bool overlap); 78 82 bool get_allow_overlap() const; 79 80 83 private: 81 84 std::string name_; … … 95 98 position displacement_; 96 99 bool avoid_edges_; 100 double minimum_distance_; 97 101 bool overlap_; 98 102 };
