From f01baa505634778700cf5edfa54d5625ca948caf Mon Sep 17 00:00:00 2001 From: Damien Marchal Date: Thu, 7 Sep 2017 23:51:20 +0200 Subject: [PATCH] =?UTF-8?q?[SofaGraphComponent]=C2=A0Add=20missing=20SOFA?= =?UTF-8?q?=5FGRAPH=5FCOMPONENT=5FAPI=20in=20class=20definition?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/SofaGraphComponent/SceneChecks.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/SofaGraphComponent/SceneChecks.h b/modules/SofaGraphComponent/SceneChecks.h index b5fb1d024ca..673fe8481e5 100644 --- a/modules/SofaGraphComponent/SceneChecks.h +++ b/modules/SofaGraphComponent/SceneChecks.h @@ -40,7 +40,7 @@ namespace simulation namespace _scenechecks_ { -class SceneCheck +class SOFA_GRAPH_COMPONENT_API SceneCheck { public: typedef std::shared_ptr SPtr ; @@ -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 SPtr ; @@ -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 SPtr ; @@ -75,7 +75,7 @@ class SceneCheckMissingRequiredPlugin : public SceneCheck }; typedef std::function ChangeSetHookFunction ; -class SceneCheckAPIChange : public SceneCheck +class SOFA_GRAPH_COMPONENT_API SceneCheckAPIChange : public SceneCheck { public: typedef std::shared_ptr SPtr ;