diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-07 20:04:02 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-07 20:04:02 (GMT) |
commit | 75784844eaad1aa77757eb7640547146e0a96209 (patch) | |
tree | c90a5293810c709d1cbeb1f7de32f690cc4e6fa4 /src/export.h | |
parent | fe0f9dd7555dd05391c956c32e26bed7d5e51a2c (diff) |
Implemented OFF export
Diffstat (limited to 'src/export.h')
-rw-r--r-- | src/export.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/export.h b/src/export.h index 0298611..cba0b23 100644 --- a/src/export.h +++ b/src/export.h @@ -3,10 +3,12 @@ #ifdef ENABLE_CGAL +#include <iostream> + void cgal_nef3_to_polyset(class PolySet *ps, class CGAL_Nef_polyhedron *root_N); -void export_stl(CGAL_Nef_polyhedron *root_N, class QTextStream &output, class QProgressDialog *pd); -void export_off(CGAL_Nef_polyhedron *root_N, class QTextStream &output, QProgressDialog *pd); -void export_dxf(CGAL_Nef_polyhedron *root_N, class QTextStream &output, QProgressDialog *pd); +void export_stl(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 |