Skip to content

Commit

Permalink
fix linking error in TechDraw
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Jan 30, 2017
1 parent 2a1d02e commit 303f088
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Mod/TechDraw/App/HatchLine.h
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -59,7 +59,7 @@ class HatchLine
Base::Vector3d getOrigin(void) {return m_origin;}
double getInterval(void) {return m_interval;}
double getOffset(void) {return m_offset;}
std::vector<double> getDashParms(void) {return m_dashParms;};
std::vector<double> getDashParms(void) {return m_dashParms;}

static std::vector<HatchLine> getSpecsForPattern(std::string& parmFile, std::string& parmName);
static bool findPatternStart(std::ifstream& inFile, std::string& parmName);
Expand All @@ -80,7 +80,7 @@ class HatchLine
};

// a LineSet is all the generated edges for 1 HatchLine for 1 Face
class LineSet
class TechDrawExport LineSet
{
public:
LineSet() {}
Expand All @@ -102,7 +102,7 @@ class LineSet
HatchLine m_hatchLine;
};

class DashSpec
class TechDrawExport DashSpec
{
public:
DashSpec() {}
Expand Down

0 comments on commit 303f088

Please sign in to comment.