diff options
Diffstat (limited to 'src/engine/LV2Plugin.cpp')
-rw-r--r-- | src/engine/LV2Plugin.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/engine/LV2Plugin.cpp b/src/engine/LV2Plugin.cpp index 0bea4c42..0efc3abf 100644 --- a/src/engine/LV2Plugin.cpp +++ b/src/engine/LV2Plugin.cpp @@ -32,6 +32,7 @@ using namespace std; using namespace Raul; namespace Ingen { +namespace Engine { LV2Plugin::LV2Plugin(SharedPtr<LV2Info> lv2_info, const std::string& uri) : PluginImpl(*lv2_info->world().uris().get(), Plugin::LV2, uri) @@ -62,11 +63,11 @@ LV2Plugin::symbol() const } NodeImpl* -LV2Plugin::instantiate(BufferFactory& bufs, - const string& name, - bool polyphonic, - Ingen::PatchImpl* parent, - Engine& engine) +LV2Plugin::instantiate(BufferFactory& bufs, + const string& name, + bool polyphonic, + PatchImpl* parent, + Engine& engine) { const SampleCount srate = engine.driver()->sample_rate(); @@ -105,4 +106,5 @@ LV2Plugin::library_path() const return _library_path; } +} // namespace Engine } // namespace Ingen |