add channel+pitch indexing for notes in a Sequence
[ardour.git] / libs / evoral / evoral / EventRingBuffer.hpp
index 1ff1a8fe15409791e57efbc906a1bcefd26bf868..714d8d6f4c5da0d4037db34cfe99d822c55319cc 100644 (file)
@@ -1,15 +1,15 @@
 /* This file is part of Evoral.
  * Copyright (C) 2008 Dave Robillard <http://drobilla.net>
- * 
+ *
  * Evoral 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.
- * 
+ *
  * Evoral 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 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.,
  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
@@ -44,7 +44,7 @@ public:
        {}
 
        size_t capacity() const { return _size; }
-       
+
        bool peek_time(Time* time);
 
        uint32_t write(Time  time, EventType  type, uint32_t  size, const uint8_t* buf);
@@ -72,7 +72,7 @@ EventRingBuffer<Time>::read(Time* time, EventType* type, uint32_t* size, uint8_t
                success = RingBuffer<uint8_t>::full_read(sizeof(uint32_t), (uint8_t*)size);
        if (success)
                success = RingBuffer<uint8_t>::full_read(*size, buf);
-       
+
        return success;
 }