font_engine_freetype - remove default constructor and virtual destructor (??).
This commit is contained in:
parent
3b6f3ff36f
commit
4d6a1c5cfc
2 changed files with 5 additions and 10 deletions
|
@ -85,14 +85,12 @@ public:
|
|||
font_file_mapping_type const& global_font_file_mapping,
|
||||
freetype_engine::font_memory_cache_type & global_memory_fonts);
|
||||
bool register_font_impl(std::string const& file_name,
|
||||
font_library & libary,
|
||||
font_file_mapping_type & font_file_mapping);
|
||||
font_library & libary,
|
||||
font_file_mapping_type & font_file_mapping);
|
||||
bool register_fonts_impl(std::string const& dir,
|
||||
font_library & libary,
|
||||
font_file_mapping_type & font_file_mapping,
|
||||
bool recurse = false);
|
||||
virtual ~freetype_engine();
|
||||
freetype_engine();
|
||||
font_library & libary,
|
||||
font_file_mapping_type & font_file_mapping,
|
||||
bool recurse = false);
|
||||
private:
|
||||
bool register_font_impl(std::string const& file_name, FT_LibraryRec_ * library);
|
||||
bool register_fonts_impl(std::string const& dir, FT_LibraryRec_ * library, bool recurse = false);
|
||||
|
|
|
@ -53,9 +53,6 @@ namespace mapnik
|
|||
{
|
||||
template class MAPNIK_DECL singleton<freetype_engine, CreateUsingNew>;
|
||||
|
||||
freetype_engine::freetype_engine() {}
|
||||
freetype_engine::~freetype_engine() {}
|
||||
|
||||
bool freetype_engine::is_font_file(std::string const& file_name)
|
||||
{
|
||||
// only accept files that will be matched by freetype2's `figurefiletype()`
|
||||
|
|
Loading…
Reference in a new issue