summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/element_import_handler.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/element_import_handler.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/element_import_handler.h')
-rw-r--r--libs/ardour/ardour/element_import_handler.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/libs/ardour/ardour/element_import_handler.h b/libs/ardour/ardour/element_import_handler.h
index f56d3ce76d..2401cf7a06 100644
--- a/libs/ardour/ardour/element_import_handler.h
+++ b/libs/ardour/ardour/element_import_handler.h
@@ -27,7 +27,6 @@
#include <boost/shared_ptr.hpp>
-using std::string;
class XMLTree;
namespace ARDOUR {
@@ -57,7 +56,7 @@ class ElementImportHandler
/** Gets a textual representation of the element type
* @return textual representation of element type
*/
- virtual string get_info () const = 0;
+ virtual std::string get_info () const = 0;
/// Elements this handler handles
ElementList elements;
@@ -68,13 +67,13 @@ class ElementImportHandler
* @param name name to check
* @return true if name is not used
*/
- bool check_name (const string & name) const;
+ bool check_name (const std::string & name) const;
/// Adds name to the list of used names
- void add_name (string name);
+ void add_name (std::string name);
/// Removes name from the list of used names
- void remove_name (const string & name);
+ void remove_name (const std::string & name);
/// Checks wheter or not all elements can be imported cleanly
static bool dirty () { return _dirty; }
@@ -103,7 +102,7 @@ class ElementImportHandler
private:
/// Set of names for duplicate checking
- std::set<string> names;
+ std::set<std::string> names;
};
} // namespace ARDOUR