Public declaration of path::to_string

This commit is contained in:
Matthias Koefferlein 2018-06-24 14:11:23 +02:00
parent f7843410a0
commit da65851ee2
1 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ path<C>::area () const
}
template <class C>
std::string
DB_PUBLIC std::string
path<C>::to_string () const
{
std::string s = "(";
@ -579,8 +579,8 @@ Path round_path_corners (const Path &path, int rad, int n)
return Path (round_path_corners (db::DPath (path), double (rad), n, 0.5));
}
template class DB_PUBLIC path<Coord>;
template class DB_PUBLIC path<DCoord>;
template class path<Coord>;
template class path<DCoord>;
// explicit instantiations
template DB_PUBLIC void path<Coord>::create_shifted_points (Coord, Coord, Coord, bool, path<Coord>::pointlist_type::iterator, path<Coord>::pointlist_type::iterator, int, box_inserter<path<Coord>::box_type>) const;