Remove most using declarations from header files.
[ardour.git] / libs / ardour / ardour / route.h
index 2b54810577db3699e084eaa13cacd7ed65c20ce2..9537097f74e62a79bf5669e37f12f2a57b73abb9 100644 (file)
@@ -62,7 +62,7 @@ class Route : public IO
 {
   protected:
 
-       typedef list<boost::shared_ptr<Processor> > ProcessorList;
+       typedef std::list<boost::shared_ptr<Processor> > ProcessorList;
 
   public:
 
@@ -238,7 +238,7 @@ class Route : public IO
 
        sigc::signal<void,void*> SelectedChanged;
 
-       int set_control_outs (const vector<std::string>& ports);
+       int set_control_outs (const std::vector<std::string>& ports);
        boost::shared_ptr<ControlOutputs> control_outs() { return _control_outs; }
 
        bool feeds (boost::shared_ptr<Route>);