blob: dd6e3e0c0c1706359bc8542e8f41a77601c22226 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef EXPORT_H_
#define EXPORT_H_
#ifdef ENABLE_CGAL
#include <iostream>
void export_stl(class CGAL_Nef_polyhedron *root_N, std::ostream &output, class QProgressDialog *pd);
void export_off(CGAL_Nef_polyhedron *root_N, std::ostream &output, QProgressDialog *pd);
void export_dxf(CGAL_Nef_polyhedron *root_N, std::ostream &output, QProgressDialog *pd);
#endif
#endif
|