From 303f0886dfcf0e333074d2e3f1fd57890b02c4c2 Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 30 Jan 2017 14:07:42 +0100 Subject: [PATCH] fix linking error in TechDraw --- src/Mod/TechDraw/App/HatchLine.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Mod/TechDraw/App/HatchLine.h b/src/Mod/TechDraw/App/HatchLine.h index 6a686605f..386035346 100644 --- a/src/Mod/TechDraw/App/HatchLine.h +++ b/src/Mod/TechDraw/App/HatchLine.h @@ -46,7 +46,7 @@ class DrawUtil; // HatchLine is the result of parsing a line from PAT file into accessible parameters // e /HatchLine/PATSpecLine/ -class HatchLine +class TechDrawExport HatchLine { public: HatchLine(); @@ -59,7 +59,7 @@ public: Base::Vector3d getOrigin(void) {return m_origin;} double getInterval(void) {return m_interval;} double getOffset(void) {return m_offset;} - std::vector getDashParms(void) {return m_dashParms;}; + std::vector getDashParms(void) {return m_dashParms;} static std::vector getSpecsForPattern(std::string& parmFile, std::string& parmName); static bool findPatternStart(std::ifstream& inFile, std::string& parmName); @@ -80,7 +80,7 @@ private: }; // a LineSet is all the generated edges for 1 HatchLine for 1 Face -class LineSet +class TechDrawExport LineSet { public: LineSet() {} @@ -102,7 +102,7 @@ private: HatchLine m_hatchLine; }; -class DashSpec +class TechDrawExport DashSpec { public: DashSpec() {}