mirror of https://github.com/CGAL/cgal
Add non-const method to get and edit comments
This commit is contained in:
parent
26563312fc
commit
b15202f9d7
|
|
@ -835,6 +835,10 @@ const Point_set* Scene_points_with_normal_item::point_set() const
|
|||
}
|
||||
|
||||
// Gets wrapped point set
|
||||
std::string& Scene_points_with_normal_item::comments()
|
||||
{
|
||||
return d->m_comments;
|
||||
}
|
||||
const std::string& Scene_points_with_normal_item::comments() const
|
||||
{
|
||||
return d->m_comments;
|
||||
|
|
|
|||
|
|
@ -77,6 +77,7 @@ public:
|
|||
const Point_set* point_set() const;
|
||||
|
||||
// Gets PLY comments (empty if point set not originated from PLY input)
|
||||
std::string& comments();
|
||||
const std::string& comments() const;
|
||||
|
||||
// Gets dimensions
|
||||
|
|
|
|||
Loading…
Reference in New Issue