Das BlinkenSendButtons
[ardour.git] / libs / ardour / ardour / export.h
index 141786873d2db5302158e3613cb8b2f25428c28f..ffc6ae5854e4a6c2f0d444342a7f63ffd77d093f 100644 (file)
 #include <sndfile.h>
 #include <samplerate.h>
 
-#include <ardour/ardour.h>
-#include <ardour/gdither.h>
-
-using std::map;
-using std::vector;
-using std::string;
-using std::pair;
+#include "ardour/ardour.h"
+#include "ardour/gdither.h"
 
 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;