mirror of https://github.com/CGAL/cgal
Add missing references
This commit is contained in:
parent
8332b8f36c
commit
afad6fbd6c
|
|
@ -22,8 +22,8 @@ namespace CGAL {
|
|||
|
||||
template <typename FaceGraph, typename CGAL_BGL_NP_TEMPLATE_PARAMETERS>
|
||||
bool write_INP(std::ostream& os,
|
||||
const std::string name,
|
||||
const std::string type,
|
||||
const std::string& name,
|
||||
const std::string& type,
|
||||
const FaceGraph& g,
|
||||
const CGAL_BGL_NP_CLASS& np)
|
||||
{
|
||||
|
|
@ -71,7 +71,7 @@ bool write_INP(std::ostream& os,
|
|||
|
||||
template <typename FaceGraph, typename CGAL_BGL_NP_TEMPLATE_PARAMETERS>
|
||||
bool write_INP(const char* fname,
|
||||
const std::string type,
|
||||
const std::string& type,
|
||||
const FaceGraph& g,
|
||||
const CGAL_BGL_NP_CLASS& np)
|
||||
{
|
||||
|
|
@ -80,13 +80,13 @@ bool write_INP(const char* fname,
|
|||
}
|
||||
|
||||
template <typename FaceGraph>
|
||||
bool write_INP(std::ostream& os, const std::string name, const std::string type, const FaceGraph& g)
|
||||
bool write_INP(std::ostream& os, const std::string& name, const std::string& type, const FaceGraph& g)
|
||||
{
|
||||
return write_INP(os, name, type, g, parameters::all_default());
|
||||
}
|
||||
|
||||
template <typename FaceGraph>
|
||||
bool write_INP(const char* fname, const std::string type, const FaceGraph& g)
|
||||
bool write_INP(const char* fname, const std::string& type, const FaceGraph& g)
|
||||
{
|
||||
return write_INP(fname, type, g, parameters::all_default());
|
||||
}
|
||||
|
|
|
|||
|
|
@ -214,7 +214,7 @@ bool read_PLY(const std::string& fname, FaceGraph& g)
|
|||
template <class FaceGraph, class NamedParameters>
|
||||
bool write_PLY(std::ostream& os,
|
||||
const FaceGraph& g,
|
||||
const std::string comments,
|
||||
const std::string& comments,
|
||||
const NamedParameters& np)
|
||||
{
|
||||
typedef typename boost::graph_traits<FaceGraph>::vertex_descriptor vertex_descriptor;
|
||||
|
|
@ -334,7 +334,7 @@ bool write_PLY(std::ostream& os,
|
|||
template <class FaceGraph>
|
||||
bool write_PLY(std::ostream& os,
|
||||
const FaceGraph& g,
|
||||
const std::string comments)
|
||||
const std::string& comments)
|
||||
{
|
||||
return write_PLY(os, g, comments, parameters::all_default());
|
||||
}
|
||||
|
|
@ -387,7 +387,7 @@ bool write_PLY(std::ostream& os,
|
|||
template <class FaceGraph, class NamedParameters>
|
||||
bool write_PLY(const char* fname,
|
||||
const FaceGraph& g,
|
||||
const std::string comments,
|
||||
const std::string& comments,
|
||||
const NamedParameters& np)
|
||||
{
|
||||
std::ofstream os(fname);
|
||||
|
|
|
|||
Loading…
Reference in New Issue