summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/export.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.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.h')
-rw-r--r--libs/ardour/ardour/export.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/libs/ardour/ardour/export.h b/libs/ardour/ardour/export.h
index e2dfa17e02..ffc6ae5854 100644
--- a/libs/ardour/ardour/export.h
+++ b/libs/ardour/ardour/export.h
@@ -32,17 +32,12 @@
#include "ardour/ardour.h"
#include "ardour/gdither.h"
-using std::map;
-using std::vector;
-using std::string;
-using std::pair;
-
namespace ARDOUR
{
class Port;
- typedef pair<Port *, uint32_t> PortChannelPair;
- typedef map<uint32_t, vector<PortChannelPair> > ExportPortMap;
+ typedef std::pair<Port *, uint32_t> PortChannelPair;
+ typedef std::map<uint32_t, std::vector<PortChannelPair> > ExportPortMap;
struct ExportSpecification : public SF_INFO, public sigc::trackable {
@@ -52,14 +47,13 @@ namespace ARDOUR
void init ();
void clear ();
-
int prepare (nframes_t blocksize, nframes_t frame_rate);
int process (nframes_t nframes);
/* set by the user */
- string path;
+ std::string path;
nframes_t sample_rate;
int src_quality;