mirror of https://github.com/CGAL/cgal
Fix timestamps
This commit is contained in:
parent
4396909ea6
commit
fe1f731e22
|
|
@ -141,7 +141,6 @@ public:
|
|||
, next_intrusive_()
|
||||
, previous_intrusive_()
|
||||
#endif
|
||||
, time_stamp_(-1)
|
||||
{}
|
||||
|
||||
Mesh_cell_base_3 (Vertex_handle v0,
|
||||
|
|
@ -156,7 +155,6 @@ public:
|
|||
, next_intrusive_()
|
||||
, previous_intrusive_()
|
||||
#endif
|
||||
, time_stamp_(-1)
|
||||
{}
|
||||
|
||||
Mesh_cell_base_3 (Vertex_handle v0,
|
||||
|
|
@ -175,7 +173,6 @@ public:
|
|||
, next_intrusive_()
|
||||
, previous_intrusive_()
|
||||
#endif
|
||||
, time_stamp_(-1)
|
||||
{}
|
||||
|
||||
// Default copy constructor and assignment operator are ok
|
||||
|
|
|
|||
|
|
@ -127,7 +127,6 @@ public:
|
|||
, next_intrusive_()
|
||||
, previous_intrusive_()
|
||||
#endif //CGAL_INTRUSIVE_LIST
|
||||
, time_stamp_(-1)
|
||||
{}
|
||||
|
||||
// Default copy constructor and assignment operator are ok
|
||||
|
|
|
|||
|
|
@ -50,26 +50,7 @@ It has the default value `Triangulation_cell_base_3<Gt>`.
|
|||
*/
|
||||
template<typename Gt,
|
||||
typename Cb = CGAL::Triangulation_cell_base_3<Gt> >
|
||||
class Remeshing_cell_base_3
|
||||
#ifndef DOXYGEN_RUNNING
|
||||
: public CGAL::Mesh_cell_base_3<Gt, internal::Fake_MD_C, Cb>
|
||||
#endif
|
||||
{
|
||||
typedef CGAL::Mesh_cell_base_3<Gt, internal::Fake_MD_C, Cb> Base;
|
||||
typedef typename Base::Vertex_handle Vertex_handle;
|
||||
typedef typename Base::Cell_handle Cell_handle;
|
||||
|
||||
public:
|
||||
// To get correct cell type in TDS
|
||||
template < class TDS2 >
|
||||
struct Rebind_TDS
|
||||
{
|
||||
typedef typename Cb::template Rebind_TDS<TDS2>::Other Cb2;
|
||||
typedef Remeshing_cell_base_3<Gt, Cb2> Other;
|
||||
};
|
||||
|
||||
using Base::Base;
|
||||
};
|
||||
using Remeshing_cell_base_3 = CGAL::Mesh_cell_base_3<Gt, internal::Fake_MD_C, Cb>;
|
||||
|
||||
}//end namespace Tetrahedral_remeshing
|
||||
}//end namespace CGAL
|
||||
|
|
|
|||
|
|
@ -53,22 +53,7 @@ It has the default value `Triangulation_vertex_base_3<Gt>`.
|
|||
|
||||
template<typename GT,
|
||||
typename Vb = CGAL::Triangulation_vertex_base_3<GT> >
|
||||
class Remeshing_vertex_base_3
|
||||
#ifndef DOXYGEN_RUNNING
|
||||
: public CGAL::Mesh_vertex_base_3<GT, internal::Fake_MD_V, Vb>
|
||||
#endif
|
||||
{
|
||||
typedef CGAL::Mesh_vertex_base_3<GT, internal::Fake_MD_V, Vb> Base;
|
||||
|
||||
public:
|
||||
// To get correct vertex type in TDS
|
||||
template < class TDS3 >
|
||||
struct Rebind_TDS {
|
||||
typedef typename Vb::template Rebind_TDS<TDS3>::Other Vb3;
|
||||
typedef Remeshing_vertex_base_3<GT, Vb3> Other;
|
||||
};
|
||||
|
||||
};
|
||||
using Remeshing_vertex_base_3 = CGAL::Mesh_vertex_base_3<GT, internal::Fake_MD_V, Vb>;
|
||||
|
||||
}//end namespace Tetrahedral_remeshing
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue