Commit missing font_set.cpp file. Closes #100.
This commit is contained in:
parent
93ccef2564
commit
dc34115e21
1 changed files with 69 additions and 0 deletions
69
src/font_set.cpp
Normal file
69
src/font_set.cpp
Normal file
|
@ -0,0 +1,69 @@
|
|||
/*****************************************************************************
|
||||
*
|
||||
* This file is part of Mapnik (c++ mapping toolkit)
|
||||
*
|
||||
* Copyright (C) 2006 Artem Pavlenko
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
//$Id$
|
||||
|
||||
//mapnik
|
||||
#include <mapnik/font_set.hpp>
|
||||
//stl
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
|
||||
namespace mapnik
|
||||
{
|
||||
FontSet::FontSet()
|
||||
: name_("default") {}
|
||||
|
||||
FontSet::FontSet(std::string const& name)
|
||||
: name_(name) {}
|
||||
|
||||
FontSet::FontSet(FontSet const& rhs)
|
||||
: name_(rhs.name_),
|
||||
face_names_(rhs.face_names_) {}
|
||||
|
||||
FontSet& FontSet::operator=(FontSet const& other)
|
||||
{
|
||||
if (this == &other)
|
||||
return *this;
|
||||
name_ = other.name_;
|
||||
face_names_ = other.face_names_;
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
FontSet::~FontSet() {}
|
||||
|
||||
void FontSet::add_face_name(std::string face_name)
|
||||
{
|
||||
face_names_.push_back(face_name);
|
||||
}
|
||||
|
||||
std::string const& FontSet::get_name() const
|
||||
{
|
||||
return name_;
|
||||
}
|
||||
|
||||
std::vector<std::string> const& FontSet::get_face_names() const
|
||||
{
|
||||
return face_names_;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue