summaryrefslogtreecommitdiffstats
path: root/ingen/Store.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-03-02 17:14:31 +0000
committerDavid Robillard <d@drobilla.net>2015-03-02 17:14:31 +0000
commite5da085b75ff7c33a10ac2b03434d487c47340f2 (patch)
treec59e52d7442dd735ec48dd0fc2d11e6838a15d6a /ingen/Store.hpp
parentf69c75e637cc3c789a675d1811a2f632732bafc0 (diff)
downloadingen-e5da085b75ff7c33a10ac2b03434d487c47340f2.tar.gz
ingen-e5da085b75ff7c33a10ac2b03434d487c47340f2.tar.bz2
ingen-e5da085b75ff7c33a10ac2b03434d487c47340f2.zip
Fix compilation with -fvisibility=hidden.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5611 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/Store.hpp')
-rw-r--r--ingen/Store.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/ingen/Store.hpp b/ingen/Store.hpp
index 77af3d66..4b886de0 100644
--- a/ingen/Store.hpp
+++ b/ingen/Store.hpp
@@ -20,20 +20,20 @@
#include <map>
#include <mutex>
-#include "raul/Deletable.hpp"
-#include "raul/Noncopyable.hpp"
-
#include "ingen/Node.hpp"
+#include "ingen/ingen.h"
#include "ingen/types.hpp"
+#include "raul/Deletable.hpp"
+#include "raul/Noncopyable.hpp"
namespace Ingen {
/** Store of objects in the graph hierarchy.
* @ingroup IngenShared
*/
-class Store : public Raul::Noncopyable
- , public Raul::Deletable
- , public std::map< const Raul::Path, SPtr<Node> > {
+class INGEN_API Store : public Raul::Noncopyable
+ , public Raul::Deletable
+ , public std::map< const Raul::Path, SPtr<Node> > {
public:
void add(Node* o);