summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export_preset.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/export_preset.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/export_preset.h')
-rw-r--r--libs/ardour/ardour/export_preset.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/libs/ardour/ardour/export_preset.h b/libs/ardour/ardour/export_preset.h
index 56054ae220..c518a208ea 100644
--- a/libs/ardour/ardour/export_preset.h
+++ b/libs/ardour/ardour/export_preset.h
@@ -26,8 +26,6 @@
#include "pbd/uuid.h"
#include "pbd/xml++.h"
-using std::string;
-
namespace ARDOUR
{
@@ -35,13 +33,13 @@ class Session;
class ExportPreset {
public:
- ExportPreset (string filename, Session & s);
+ ExportPreset (std::string filename, Session & s);
~ExportPreset ();
PBD::UUID const & id () const { return _id; }
- string name () const { return _name; }
+ std::string name () const { return _name; }
- void set_name (string const & name);
+ void set_name (std::string const & name);
// Note: The set_..._state functions take ownership of the XMLNode
void set_global_state (XMLNode & state);
@@ -55,14 +53,14 @@ class ExportPreset {
private:
- void set_id (string const & id);
+ void set_id (std::string const & id);
XMLNode * get_instant_xml () const;
void save_instant_xml () const;
void remove_instant_xml () const;
PBD::UUID _id;
- string _name;
+ std::string _name;
Session & session;
XMLTree global;