blob: 49319ba0353b0e89d72af2b218e019ee48c4cb25 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef EXPORT_H_
#define EXPORT_H_
#ifdef ENABLE_CGAL
void export_stl(class CGAL_Nef_polyhedron *root_N, QString filename, class QProgressDialog *pd);
void export_off(CGAL_Nef_polyhedron *root_N, QString filename, QProgressDialog *pd);
void export_dxf(CGAL_Nef_polyhedron *root_N, QString filename, QProgressDialog *pd);
#endif
#endif
|