From 5268059f5d4ca9325a78da688a7622898354215a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 13 May 2009 04:44:01 +0000 Subject: Remove 'using' declarations from headers. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1993 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/LADSPAPlugin.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/engine/LADSPAPlugin.hpp') diff --git a/src/engine/LADSPAPlugin.hpp b/src/engine/LADSPAPlugin.hpp index 1bc25b7a..1c01e107 100644 --- a/src/engine/LADSPAPlugin.hpp +++ b/src/engine/LADSPAPlugin.hpp @@ -40,8 +40,8 @@ public: LADSPAPlugin(const std::string& library_path, const std::string& uri, unsigned long id, - const string& label, - const string& name) + const std::string& label, + const std::string& name) : PluginImpl(Plugin::LADSPA, uri, library_path) , _id(id) , _label(label) @@ -55,10 +55,10 @@ public: const std::string& label() const { return _label; } unsigned long id() const { return _id; } - const string symbol() const { return Raul::Path::nameify(_label); } - const string name() const { return _name; } + const std::string symbol() const { return Raul::Path::nameify(_label); } + const std::string name() const { return _name; } - const string library_name() const { + const std::string library_name() const { return _library_path.substr(_library_path.find_last_of("/")+1); } -- cgit v1.2.1