fix build failure: add export mscro, add header

This commit is contained in:
wmayer
2019-10-03 01:32:33 +02:00
parent cee9f4ff40
commit 0aa0f1c31f
2 changed files with 3 additions and 2 deletions

View File

@@ -21,6 +21,7 @@
* *
***************************************************************************
*/
#include "PreCompiled.h"
#include "PathSegmentWalker.h"
#include <App/Application.h>

View File

@@ -33,7 +33,7 @@ namespace Path
* PathSegmentVisitor is the companion class to PathSegmentWalker. Its members are called
* with the segmented points of each command.
*/
class PathSegmentVisitor
class PathExport PathSegmentVisitor
{
public:
virtual ~PathSegmentVisitor();
@@ -53,7 +53,7 @@ class PathSegmentVisitor
* appropriate member of the provided PathSegmentVisitor.
* All non-movement commands are processed accordingly if they affect the movement commands.
*/
class PathSegmentWalker
class PathExport PathSegmentWalker
{
public:
PathSegmentWalker(const Toolpath &tp_);