Remove unused method PBD::sys::path::branch_path
[ardour.git] / libs / pbd / pbd / receiver.h
index 5ce238df636aebc243812a8fe095749e55af36cb..32fb84fa38e28c99e8e8e5bc6d2b932978ab1c1b 100644 (file)
@@ -15,7 +15,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #ifndef __libmisc_receiver_h__
 
 #include "transmitter.h"
 
-using std::vector;
-
 class strstream;
 
-class Receiver : virtual public sigc::trackable
+class Receiver : public sigc::trackable
 {
   public:
        Receiver ();
@@ -44,7 +41,7 @@ class Receiver : virtual public sigc::trackable
        virtual void receive (Transmitter::Channel, const char *) = 0;
 
   private:
-       vector<sigc::connection *> connections;
+       std::vector<sigc::connection *> connections;
 };
 
 #endif  // __libmisc_receiver_h__