summaryrefslogtreecommitdiffstats
path: root/src/engine/LV2Plugin.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/LV2Plugin.hpp')
-rw-r--r--src/engine/LV2Plugin.hpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/engine/LV2Plugin.hpp b/src/engine/LV2Plugin.hpp
index 0d67834e..a05853a8 100644
--- a/src/engine/LV2Plugin.hpp
+++ b/src/engine/LV2Plugin.hpp
@@ -35,10 +35,6 @@
#include "PluginImpl.hpp"
#include "LV2Info.hpp"
-using std::string;
-using Ingen::Shared::Plugin;
-
-
namespace Ingen {
class PatchImpl;
@@ -50,18 +46,18 @@ class NodeImpl;
class LV2Plugin : public PluginImpl
{
public:
- LV2Plugin(SharedPtr<LV2Info> lv2_info, const string& uri)
+ LV2Plugin(SharedPtr<LV2Info> lv2_info, const std::string& uri)
: PluginImpl(Plugin::LV2, uri)
, _slv2_plugin(NULL)
, _lv2_info(lv2_info)
{}
- NodeImpl* instantiate(const string& name,
- bool polyphonic,
- Ingen::PatchImpl* parent,
- Engine& engine);
+ NodeImpl* instantiate(const std::string& name,
+ bool polyphonic,
+ Ingen::PatchImpl* parent,
+ Engine& engine);
- const string symbol() const;
+ const std::string symbol() const;
SharedPtr<LV2Info> lv2_info() const { return _lv2_info; }