summaryrefslogtreecommitdiffstats
path: root/src/server/PluginImpl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/PluginImpl.hpp')
-rw-r--r--src/server/PluginImpl.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/server/PluginImpl.hpp b/src/server/PluginImpl.hpp
index 7ad7193c..968c43f6 100644
--- a/src/server/PluginImpl.hpp
+++ b/src/server/PluginImpl.hpp
@@ -23,7 +23,7 @@
#include <boost/utility.hpp>
#include "ingen/Plugin.hpp"
-#include "ingen/shared/ResourceImpl.hpp"
+#include "ingen/Resource.hpp"
namespace Ingen {
@@ -41,14 +41,13 @@ class BufferFactory;
* Conceptually, a Node is an instance of this.
*/
class PluginImpl : public Plugin
- , public Ingen::Shared::ResourceImpl
, public boost::noncopyable
{
public:
PluginImpl(Ingen::Shared::URIs& uris,
Type type,
const std::string& uri)
- : ResourceImpl(uris, uri)
+ : Plugin(uris, uri)
, _type(type)
{}