mirror of https://github.com/CGAL/cgal
added default c'tor for rep
This commit is contained in:
parent
a16155c266
commit
4e5f44e110
|
|
@ -51,8 +51,21 @@ public:
|
||||||
typedef
|
typedef
|
||||||
Surface_point_2l_rep< Curved_kernel_via_analysis_2l, Surface_pair_3 > Self;
|
Surface_point_2l_rep< Curved_kernel_via_analysis_2l, Surface_pair_3 > Self;
|
||||||
|
|
||||||
|
//! type of base class
|
||||||
|
typedef Point_2_rep< Curved_kernel_via_analysis_2l > Base;
|
||||||
|
|
||||||
|
//! type of surface
|
||||||
typedef typename Surface_pair_3::Surface_3 Surface_3;
|
typedef typename Surface_pair_3::Surface_3 Surface_3;
|
||||||
|
|
||||||
|
//!\name Constructors
|
||||||
|
//!@{
|
||||||
|
|
||||||
|
//! default constructor
|
||||||
|
Surface_point_2l_rep() :
|
||||||
|
Base(), _m_sheet(-1) {
|
||||||
|
}
|
||||||
|
|
||||||
|
//!@}
|
||||||
public:
|
public:
|
||||||
//! supporting surface
|
//! supporting surface
|
||||||
mutable Surface_3 _m_surface;
|
mutable Surface_3 _m_surface;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue