Remove unused method PBD::sys::path::branch_path
[ardour.git] / libs / pbd / pbd / transmitter.h
index 357cb9965fcffc6be67d7ea5f3ef1977c12c17d5..6da521dd263762df0c8eee431ed197daa7db66dd 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_transmitter_h__
 
 #include <sigc++/sigc++.h>
 
-using std::cout;
-using std::cerr;
-using std::endl;
-
 class Transmitter : public std::stringstream
 
 {
@@ -83,11 +78,11 @@ endmsg (std::ostream &ostr)
           see if ostr == cout, and handle it specially.
        */
 
-       if (&ostr == &cout) {
-               cout << endl;
+       if (&ostr == &std::cout) {
+               std::cout << std::endl;
                return ostr;
-       } else if (&ostr == &cerr) {
-               cerr << endl;
+       } else if (&ostr == &std::cerr) {
+               std::cerr << std::endl;
                return ostr;
        }
 
@@ -98,7 +93,7 @@ endmsg (std::ostream &ostr)
                   it and assume that that will be enough.
                */
                
-               ostr << endl;
+               ostr << std::endl;
        }
 
        return ostr;