summaryrefslogtreecommitdiffstats
path: root/src/module/World.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-13 03:29:04 +0000
committerDavid Robillard <d@drobilla.net>2011-04-13 03:29:04 +0000
commit793bef06e2a98561e266a32ee767410ea44d4c67 (patch)
treeb2c5957b3e9a5196f25a4f9cef7dee4e54560060 /src/module/World.cpp
parente5c50582b6b0a53f6cb7d4e14e46a966322fabe9 (diff)
downloadingen-793bef06e2a98561e266a32ee767410ea44d4c67.tar.gz
ingen-793bef06e2a98561e266a32ee767410ea44d4c67.tar.bz2
ingen-793bef06e2a98561e266a32ee767410ea44d4c67.zip
Tidy up headers towards being API appropriate.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3141 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/module/World.cpp')
-rw-r--r--src/module/World.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/module/World.cpp b/src/module/World.cpp
index d8721f5f..48fe7753 100644
--- a/src/module/World.cpp
+++ b/src/module/World.cpp
@@ -29,6 +29,7 @@
#include "shared/LV2Features.hpp"
#include "shared/LV2URIMap.hpp"
#include "World.hpp"
+#include "Module.hpp"
#define LOG(s) s << "[Module] "
@@ -94,7 +95,8 @@ load_module(const string& name)
}
-struct WorldImpl : public boost::noncopyable {
+class WorldImpl : public boost::noncopyable {
+public:
WorldImpl(Raul::Configuration* conf, int& a_argc, char**& a_argv)
: argc(a_argc)
, argv(a_argv)