summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/vst_plugin.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-05-12 17:03:42 +0000
committerCarl Hetherington <carl@carlh.net>2009-05-12 17:03:42 +0000
commit3b89d9eaa03406a5e03648f47734211f09b89d62 (patch)
tree1c8d151bca327d4a5cb7047c8591aa814b9b4ec8 /libs/ardour/ardour/vst_plugin.h
parent2e5c935990d6ea5cc6e9a5a6de0fd8c52e68657c (diff)
Remove most using declarations from header files.
git-svn-id: svn://localhost/ardour2/branches/3.0@5069 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/vst_plugin.h')
-rw-r--r--libs/ardour/ardour/vst_plugin.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/libs/ardour/ardour/vst_plugin.h b/libs/ardour/ardour/vst_plugin.h
index d4ca3b8b60..1cb7e376e4 100644
--- a/libs/ardour/ardour/vst_plugin.h
+++ b/libs/ardour/ardour/vst_plugin.h
@@ -32,11 +32,6 @@
#include <jack/types.h>
#include "ardour/plugin.h"
-using std::string;
-using std::vector;
-using std::list;
-using std::map;
-
struct _FSTHandle;
struct _FST;
typedef struct _FSTHandle FSTHandle;
@@ -76,8 +71,8 @@ class VSTPlugin : public ARDOUR::Plugin
ChanMapping in, ChanMapping out,
nframes_t nframes, nframes_t offset);
- string describe_parameter (Evoral::Parameter);
- string state_node_name() const { return "vst"; }
+ std::string describe_parameter (Evoral::Parameter);
+ std::string state_node_name() const { return "vst"; }
void print_parameter (uint32_t, char*, uint32_t len) const;
bool parameter_is_audio(uint32_t i) const { return false; }
@@ -85,8 +80,8 @@ class VSTPlugin : public ARDOUR::Plugin
bool parameter_is_input(uint32_t i) const { return true; }
bool parameter_is_output(uint32_t i) const { return false; }
- bool load_preset (const string preset_label );
- bool save_preset(string name);
+ bool load_preset (const std::string preset_label );
+ bool save_preset (std::string name);
bool has_editor () const;