summaryrefslogtreecommitdiffstats
path: root/src/engine/NodeFactory.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-12 17:46:24 +0000
committerDavid Robillard <d@drobilla.net>2009-05-12 17:46:24 +0000
commit88dad1e0e6c100700cd1501fce5ba23febcf2716 (patch)
tree267f8f335027659598935a257eb9d8ee2c6cc0e1 /src/engine/NodeFactory.hpp
parentf230de56d33171a45588af91d31a3ea09c840933 (diff)
downloadingen-88dad1e0e6c100700cd1501fce5ba23febcf2716.tar.gz
ingen-88dad1e0e6c100700cd1501fce5ba23febcf2716.tar.bz2
ingen-88dad1e0e6c100700cd1501fce5ba23febcf2716.zip
Fix lv2.h include problem.
Fixes ticket #354. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1987 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/NodeFactory.hpp')
-rw-r--r--src/engine/NodeFactory.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/engine/NodeFactory.hpp b/src/engine/NodeFactory.hpp
index d94fc84d..08b212fa 100644
--- a/src/engine/NodeFactory.hpp
+++ b/src/engine/NodeFactory.hpp
@@ -26,10 +26,6 @@
#include <string>
#include <pthread.h>
#include <glibmm/module.h>
-#ifdef HAVE_SLV2
-#include "slv2/slv2.h"
-#include "LV2Info.hpp"
-#endif
using std::string;
@@ -38,6 +34,9 @@ namespace Ingen {
class NodeImpl;
class PatchImpl;
class PluginImpl;
+#ifdef HAVE_SLV2
+class LV2Info;
+#endif
/** Loads plugins and creates Nodes from them.