Skip to content

Commit

Permalink
[SofaGraphComponent] Add missing SOFA_GRAPH_COMPONENT_API in class de…
Browse files Browse the repository at this point in the history
…finition
  • Loading branch information
damienmarchal committed Sep 7, 2017
1 parent a473d5a commit f01baa5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/SofaGraphComponent/SceneChecks.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace simulation
namespace _scenechecks_
{

class SceneCheck
class SOFA_GRAPH_COMPONENT_API SceneCheck
{
public:
typedef std::shared_ptr<SceneCheck> SPtr ;
Expand All @@ -50,7 +50,7 @@ class SceneCheck
virtual void doCheckOn(Node* node) = 0 ;
};

class SceneCheckDuplicatedName : public SceneCheck
class SOFA_GRAPH_COMPONENT_API SceneCheckDuplicatedName : public SceneCheck
{
public:
typedef std::shared_ptr<SceneCheckDuplicatedName> SPtr ;
Expand All @@ -60,7 +60,7 @@ class SceneCheckDuplicatedName : public SceneCheck
virtual void doCheckOn(Node* node) override ;
};

class SceneCheckMissingRequiredPlugin : public SceneCheck
class SOFA_GRAPH_COMPONENT_API SceneCheckMissingRequiredPlugin : public SceneCheck
{
public:
typedef std::shared_ptr<SceneCheckMissingRequiredPlugin > SPtr ;
Expand All @@ -75,7 +75,7 @@ class SceneCheckMissingRequiredPlugin : public SceneCheck
};

typedef std::function<void(sofa::core::objectmodel::Base*)> ChangeSetHookFunction ;
class SceneCheckAPIChange : public SceneCheck
class SOFA_GRAPH_COMPONENT_API SceneCheckAPIChange : public SceneCheck
{
public:
typedef std::shared_ptr<SceneCheckAPIChange> SPtr ;
Expand Down

0 comments on commit f01baa5

Please sign in to comment.