~ubuntu-branches/ubuntu/trusty/mapnik/trusty-proposed

« back to all changes in this revision

Viewing changes to include/mapnik/symbolizer.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Sauthier
  • Date: 2009-08-27 00:28:37 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090827002837-ztqzfg2rmclfh4i9
Tags: 0.6.1-0ubuntu1
* New upstream release.
* Change usr/lib to usr/lib* to enable build on 64 bits systems due to new
  configuration in SConstruct in :
  - debian/libmapnik-dev.install
  - debian/libmapnik0.6.install
  - debian/mapnik-plugin-base

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
namespace mapnik 
31
31
{
32
32
 
33
 
    class symbolizer_with_image {
 
33
    class MAPNIK_DECL symbolizer_with_image {
34
34
        public:
35
35
            boost::shared_ptr<ImageData32> get_image() const;
36
36
            const std::string & get_filename() const;
 
37
            void set_filename(std::string const& image_filename);
37
38
            void set_image( boost::shared_ptr<ImageData32> symbol);
38
39
 
39
40
            virtual ~symbolizer_with_image() {};