summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/audio_region_importer.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/audio_region_importer.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/audio_region_importer.h')
-rw-r--r--libs/ardour/ardour/audio_region_importer.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/libs/ardour/ardour/audio_region_importer.h b/libs/ardour/ardour/audio_region_importer.h
index ec70627428..71e8718ce8 100644
--- a/libs/ardour/ardour/audio_region_importer.h
+++ b/libs/ardour/ardour/audio_region_importer.h
@@ -43,14 +43,14 @@ class AudioRegionImportHandler : public ElementImportHandler
public:
// Inerface implementation
AudioRegionImportHandler (XMLTree const & source, Session & session);
- string get_info () const;
+ std::string get_info () const;
void create_regions_from_children (XMLNode const & node, ElementList & list);
// Source management
- bool check_source (string const & filename) const;
- void add_source (string const & filename, boost::shared_ptr<Source> const & source);
- boost::shared_ptr<Source> const & get_source (string const & filename) const;
+ bool check_source (std::string const & filename) const;
+ void add_source (std::string const & filename, boost::shared_ptr<Source> const & source);
+ boost::shared_ptr<Source> const & get_source (std::string const & filename) const;
// Id management
void register_id (PBD::ID & old_id, PBD::ID & new_id);
@@ -58,8 +58,8 @@ class AudioRegionImportHandler : public ElementImportHandler
private:
// Source management
- typedef std::map<string, boost::shared_ptr<Source> > SourceMap;
- typedef std::pair<string, boost::shared_ptr<Source> > SourcePair;
+ typedef std::map<std::string, boost::shared_ptr<Source> > SourceMap;
+ typedef std::pair<std::string, boost::shared_ptr<Source> > SourcePair;
SourceMap sources;
// Id management
@@ -75,7 +75,7 @@ class AudioRegionImporter : public ElementImporter
~AudioRegionImporter ();
// Interface implementation
- string get_info () const;
+ std::string get_info () const;
Session::ImportStatus * get_import_status () { return &status; }
// other stuff
@@ -93,7 +93,7 @@ class AudioRegionImporter : public ElementImporter
AudioRegionImportHandler & handler;
PBD::ID old_id;
PBD::ID id;
- std::list<string> filenames;
+ std::list<std::string> filenames;
Session::ImportStatus status;
bool parse_xml_region ();