summaryrefslogtreecommitdiffstats
path: root/src/server/PluginImpl.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-03-19 10:24:19 +0100
committerDavid Robillard <d@drobilla.net>2017-03-20 02:58:56 +0100
commitf46a3ec40a691a6892ad5536ca47de175a9c05b7 (patch)
treee1a4f29a2083f98daff1384fe2fab34ce28c3d48 /src/server/PluginImpl.hpp
parentf062189c8219041fad45cfd340c367e5c4796933 (diff)
downloadingen-f46a3ec40a691a6892ad5536ca47de175a9c05b7.tar.gz
ingen-f46a3ec40a691a6892ad5536ca47de175a9c05b7.tar.bz2
ingen-f46a3ec40a691a6892ad5536ca47de175a9c05b7.zip
Cleanup: Trim boost headers and unnecessary configure checks
Diffstat (limited to 'src/server/PluginImpl.hpp')
-rw-r--r--src/server/PluginImpl.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/server/PluginImpl.hpp b/src/server/PluginImpl.hpp
index 4f5c7eec..07798e45 100644
--- a/src/server/PluginImpl.hpp
+++ b/src/server/PluginImpl.hpp
@@ -19,8 +19,6 @@
#include <cstdlib>
-#include <boost/utility.hpp>
-
#include "ingen/Resource.hpp"
#include "raul/Symbol.hpp"
#include "raul/URI.hpp"
@@ -41,7 +39,6 @@ class GraphImpl;
* Conceptually, a Block is an instance of this.
*/
class PluginImpl : public Resource
- , public boost::noncopyable
{
public:
PluginImpl(Ingen::URIs& uris,
@@ -91,6 +88,10 @@ protected:
Presets _presets;
bool _presets_loaded;
bool _is_zombie;
+
+private:
+ PluginImpl(const PluginImpl&) = delete;
+ PluginImpl& operator=(const PluginImpl&) = delete;
};
} // namespace Server