Add a return value to 'WCMRPortAudioDeviceManager::getDeviceAvailableSampleRates()'
[ardour.git] / libs / backends / wavesaudio / waves_midi_buffer.cc
index 24527de0e57f420a2afef0a73a428c97d3ba7d12..03f5ca71db5bd216c603d9b9a100cd40c993efbe 100644 (file)
@@ -1,50 +1,49 @@
-/*\r
-    Copyright (C) 2014 Waves Audio Ltd.\r
-\r
-    This program is free software; you can redistribute it and/or modify\r
-    it under the terms of the GNU General Public License as published by\r
-    the Free Software Foundation; either version 2 of the License, or\r
-    (at your option) any later version.\r
-\r
-    This program is distributed in the hope that it will be useful,\r
-    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-    GNU General Public License for more details.\r
-\r
-    You should have received a copy of the GNU General Public License\r
-    along with this program; if not, write to the Free Software\r
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.\r
-\r
-*/\r
-\r
-#include "waves_midi_buffer.h"\r
-#include "waves_midi_event.h"\r
-\r
-using namespace ARDOUR;\r
-\r
-WavesMidiBuffer::WavesMidiBuffer (std::string name)\r
-    : std::vector<WavesMidiEvent*> ()\r
-    , _name (name)\r
-{\r
-}\r
-\r
-WavesMidiBuffer::~WavesMidiBuffer ()\r
-{\r
-    clear ();\r
-}\r
-\r
-void WavesMidiBuffer::clear ()\r
-{\r
-    for (WavesMidiBufferIterator it = begin (); it !=  end (); ++it)\r
-        delete *it;\r
-\r
-    std::vector<WavesMidiEvent*>::clear ();\r
-}\r
-\r
-WavesMidiBuffer& WavesMidiBuffer::operator += (const WavesMidiBuffer& source)\r
-{\r
-    for (WavesMidiBufferConstIterator it = source.begin (); it !=  source.end (); ++it) {\r
-        push_back (new WavesMidiEvent (**it));\r
-    }\r
-    return *this;\r
-}\r
+/*
+    Copyright (C) 2013 Valeriy amyshniy
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+#include "waves_midi_buffer.h"
+#include "waves_midi_event.h"
+
+using namespace ARDOUR;
+
+WavesMidiBuffer::WavesMidiBuffer (std::string name)
+    : std::vector<WavesMidiEvent*> ()
+    , _name (name)
+{
+}
+
+WavesMidiBuffer::~WavesMidiBuffer ()
+{
+    clear ();
+}
+
+void WavesMidiBuffer::clear ()
+{
+    for (WavesMidiBufferIterator it = begin (); it !=  end (); ++it)
+        delete *it;
+
+    std::vector<WavesMidiEvent*>::clear ();
+}
+
+WavesMidiBuffer& WavesMidiBuffer::operator += (const WavesMidiBuffer& source)
+{
+    for (WavesMidiBufferConstIterator it = source.begin (); it !=  source.end (); ++it) {
+        push_back (new WavesMidiEvent (**it));
+    }
+    return *this;
+}