summaryrefslogtreecommitdiffstats
path: root/src/engine/PluginImpl.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-13 04:44:01 +0000
committerDavid Robillard <d@drobilla.net>2009-05-13 04:44:01 +0000
commit5268059f5d4ca9325a78da688a7622898354215a (patch)
treeebf19a912d4bf98966b3bf7c289059b0644bf47e /src/engine/PluginImpl.hpp
parent19928bb583e72802746b89e322f71ecc0fcb7427 (diff)
downloadingen-5268059f5d4ca9325a78da688a7622898354215a.tar.gz
ingen-5268059f5d4ca9325a78da688a7622898354215a.tar.bz2
ingen-5268059f5d4ca9325a78da688a7622898354215a.zip
Remove 'using' declarations from headers.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1993 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/PluginImpl.hpp')
-rw-r--r--src/engine/PluginImpl.hpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/engine/PluginImpl.hpp b/src/engine/PluginImpl.hpp
index e900d34c..40f9c91f 100644
--- a/src/engine/PluginImpl.hpp
+++ b/src/engine/PluginImpl.hpp
@@ -27,9 +27,6 @@
#include "interface/Plugin.hpp"
#include "shared/ResourceImpl.hpp"
-using std::string;
-using Ingen::Shared::Plugin;
-
namespace Ingen {
class PatchImpl;
@@ -46,7 +43,7 @@ class PluginImpl : public Ingen::Shared::Plugin
, public boost::noncopyable
{
public:
- PluginImpl(Type type, const string& uri, const string library_path="")
+ PluginImpl(Type type, const std::string& uri, const std::string library_path="")
: ResourceImpl(uri)
, _type(type)
, _library_path(library_path)
@@ -58,7 +55,7 @@ public:
Ingen::PatchImpl* parent,
Engine& engine) = 0;
- virtual const string symbol() const = 0;
+ virtual const std::string symbol() const = 0;
virtual const std::string& library_path() const { return _library_path; }
@@ -71,9 +68,9 @@ public:
void module(Glib::Module* module) { _module = module; }
protected:
- Plugin::Type _type;
- mutable string _library_path;
- Glib::Module* _module;
+ Plugin::Type _type;
+ mutable std::string _library_path;
+ Glib::Module* _module;
};