diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-01 02:09:06 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-01 02:09:06 (GMT) |
commit | 1633fb0344c92631562c2a802e8deddf2ce4637f (patch) | |
tree | e6e71a9d9a524119db9cc430c5f8409c6839aa9a /src/dxfdata.h | |
parent | c193372d2ff20d32900d72e817e7c9608ae36112 (diff) |
Refactoring of CGAL functionality to allow for forward-declaration of CGAL classes in header files, reducing coupling and thus compilation times
Diffstat (limited to 'src/dxfdata.h')
-rw-r--r-- | src/dxfdata.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/dxfdata.h b/src/dxfdata.h index e71a740..a513edf 100644 --- a/src/dxfdata.h +++ b/src/dxfdata.h @@ -37,13 +37,9 @@ public: DxfData(); DxfData(double fn, double fs, double fa, QString filename, QString layername = QString(), double xorigin = 0.0, double yorigin = 0.0, double scale = 1.0); -#ifdef ENABLE_CGAL - DxfData(const struct CGAL_Nef_polyhedron &N); -#endif Vector2d *addPoint(double x, double y); -private: void fixup_path_direction(); }; |