diff options
author | Marius Kintel <marius@kintel.net> | 2012-02-03 22:10:43 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-02-03 22:10:43 (GMT) |
commit | 6dde0695f1f4edbae6980fb62ca207630f560095 (patch) | |
tree | 2960b49bc570116a7356cc015d5bcb3a3d3b0c5c /src/export.h | |
parent | d7ee4e4f3c17667c0a5bdb3b68d4485ce79869dd (diff) | |
parent | c2c67f2eacd74b560c5c5a428e8a0a7bae4fd55a (diff) |
Merge branch 'master' of github.com:openscad/openscad
Diffstat (limited to 'src/export.h')
-rw-r--r-- | src/export.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/export.h b/src/export.h index 9750c30..3897be0 100644 --- a/src/export.h +++ b/src/export.h @@ -1,13 +1,18 @@ #ifndef EXPORT_H_ #define EXPORT_H_ -#ifdef ENABLE_CGAL - #include <iostream> +#ifdef ENABLE_CGAL + void export_stl(class CGAL_Nef_polyhedron *root_N, std::ostream &output); void export_off(CGAL_Nef_polyhedron *root_N, std::ostream &output); void export_dxf(CGAL_Nef_polyhedron *root_N, std::ostream &output); + +#endif + +#ifdef DEBUG +void export_stl(const class PolySet &ps, std::ostream &output); #endif #endif |