diff options
author | Marius Kintel <marius@kintel.net> | 2010-07-08 22:49:36 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2010-10-31 00:42:37 (GMT) |
commit | e46f9dab2f3a2652d787b315bcf0d24503e154af (patch) | |
tree | 68e82d45d3230e08e08ac376af27a77372a6487d /src/export.h | |
parent | b4d03c4d8f6d25faccad1e3e763deaa29d540be0 (diff) |
export to stream for stdout/stderr output support
Diffstat (limited to 'src/export.h')
-rw-r--r-- | src/export.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/export.h b/src/export.h index 444b984..d35246c 100644 --- a/src/export.h +++ b/src/export.h @@ -4,9 +4,9 @@ #ifdef ENABLE_CGAL #include "cgal.h" void cgal_nef3_to_polyset(PolySet *ps, CGAL_Nef_polyhedron *root_N); -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); +void export_stl(class 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); #endif #endif |