Add value accessor methods

This commit is contained in:
Jackson Campolattaro 2020-07-02 17:23:47 -04:00
parent 5abbb3c4de
commit d2d30c5f00
1 changed files with 3 additions and 0 deletions

View File

@ -86,6 +86,9 @@ namespace CGAL {
return result;
}
Value &value() { return m_value; }
const Value &value() const { return m_value; }
};
}