Hello, I tried to use the method described in your project to convert the cgal library, but some of the header files exist template class writing, the Internet said idl does not support generics, so I encountered difficulties when writing idl, I intercepted part of the code as follows, looking forward to getting a reply
`
template
class I_Polyhedron_vertex : public VertexBase {
public:
typedef VertexBase Base;
typedef typename Base::Point Point;
typedef Point Point_3;
public:
I_Polyhedron_vertex() {}
I_Polyhedron_vertex( const VertexBase& b) : VertexBase(b) {}
I_Polyhedron_vertex( const Point_3& p) : VertexBase(p) {}
}
`
Hello, I tried to use the method described in your project to convert the cgal library, but some of the header files exist template class writing, the Internet said idl does not support generics, so I encountered difficulties when writing idl, I intercepted part of the code as follows, looking forward to getting a reply
`
template
class I_Polyhedron_vertex : public VertexBase {
public:
typedef VertexBase Base;
typedef typename Base::Point Point;
typedef Point Point_3;
public:
I_Polyhedron_vertex() {}
I_Polyhedron_vertex( const VertexBase& b) : VertexBase(b) {}
I_Polyhedron_vertex( const Point_3& p) : VertexBase(p) {}
}
`