]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/midi-stream.cc
release: 0.1.11
[lilypond.git] / lily / midi-stream.cc
index 5f1b3ee501652a6494d9463950ca771526014b7d..0521e87c756537bd54d7075da9af731bcef7ef3c 100644 (file)
@@ -28,31 +28,31 @@ Midi_stream::~Midi_stream()
 }
 
 Midi_stream&
-Midi_stream::operator <<( String str)
+Midi_stream::operator <<(String str)
 {
-  if ( check_debug)
+  if (check_debug)
        str = String_convert::bin2hex_str (str);
   
   *os_p_ << str;
 
-  if ( check_debug)
+  if (check_debug)
       *os_p_ << "\n";
 
   return *this;
 }
 
 Midi_stream&
-Midi_stream::operator <<( Midi_item const& mitem_c_r)
+Midi_stream::operator <<(Midi_item const& mitem_c_r)
 {
 //    *this << mitem_c_r.str();
   mitem_c_r.output (this);
-  if ( check_debug)
+  if (check_debug)
       *os_p_ << "\n";
   return *this;
 }
 
 Midi_stream&
-Midi_stream::operator <<( int i)
+Midi_stream::operator <<(int i)
 {
   // output binary string ourselves
   *this << Midi_item::i2varint_str (i);
@@ -63,6 +63,6 @@ void
 Midi_stream::open()
 {
   os_p_ = new ofstream (filename_str_);
-  if ( !*os_p_)
+  if (!*os_p_)
        error ("can't open `" + filename_str_ + "\'");
 }