summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-10-21 16:26:59 +0000
committerDavid Robillard <d@drobilla.net>2011-10-21 16:26:59 +0000
commit2a80b2cf13d7992c0313f8a82103e64bdeef72c4 (patch)
treeb93050f1034dfe64b18d1e9d7c8ec17dcd1d6cd3 /src
parent646889d772c327ed7e867af661581a991fd3ac2d (diff)
downloadingen-2a80b2cf13d7992c0313f8a82103e64bdeef72c4.tar.gz
ingen-2a80b2cf13d7992c0313f8a82103e64bdeef72c4.tar.bz2
ingen-2a80b2cf13d7992c0313f8a82103e64bdeef72c4.zip
Remove code from header.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3559 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/shared/Module.hpp5
-rw-r--r--src/shared/World.hpp1
-rw-r--r--src/shared/wscript1
3 files changed, 2 insertions, 5 deletions
diff --git a/src/shared/Module.hpp b/src/shared/Module.hpp
index a34db75f..f972a999 100644
--- a/src/shared/Module.hpp
+++ b/src/shared/Module.hpp
@@ -20,7 +20,6 @@
#include <glibmm/module.h>
-#include "raul/log.hpp"
#include "raul/SharedPtr.hpp"
namespace Ingen {
@@ -33,9 +32,7 @@ class World;
* All components of Ingen reside in one of these.
*/
struct Module {
- virtual ~Module() {
- Raul::info << "[Module] Unloading " << library->get_name() << std::endl;
- }
+ virtual ~Module();
virtual void load(Ingen::Shared::World* world) = 0;
virtual void run(Ingen::Shared::World* world) {}
diff --git a/src/shared/World.hpp b/src/shared/World.hpp
index 8b0a65da..4f0a00c2 100644
--- a/src/shared/World.hpp
+++ b/src/shared/World.hpp
@@ -18,7 +18,6 @@
#ifndef INGEN_MODULE_WORLD_HPP
#define INGEN_MODULE_WORLD_HPP
-#include <map>
#include <string>
#include <boost/shared_ptr.hpp>
diff --git a/src/shared/wscript b/src/shared/wscript
index 1a8fd389..d402a813 100644
--- a/src/shared/wscript
+++ b/src/shared/wscript
@@ -19,6 +19,7 @@ def build(bld):
LV2Atom.cpp
LV2Features.cpp
LV2URIMap.cpp
+ Module.cpp
ResourceImpl.cpp
Store.cpp
World.cpp