Chris@19: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ Chris@19: Chris@42: /* Chris@42: Tipic Chris@42: Chris@42: Centre for Digital Music, Queen Mary, University of London. Chris@42: Chris@42: This program is free software; you can redistribute it and/or Chris@42: modify it under the terms of the GNU General Public License as Chris@42: published by the Free Software Foundation; either version 2 of the Chris@42: License, or (at your option) any later version. See the file Chris@42: COPYING included with this distribution for more information. Chris@42: */ Chris@42: Chris@19: #ifndef TIPIC_TYPES_H Chris@19: #define TIPIC_TYPES_H Chris@19: Chris@19: #include Chris@19: Chris@19: /// A series of real-valued samples ordered in time. Chris@19: typedef std::vector RealSequence; Chris@19: Chris@19: /// A series of real-valued samples ordered by bin (frequency or similar). Chris@19: typedef std::vector RealColumn; Chris@19: Chris@19: /// A matrix of real-valued samples, indexed by time then bin number. Chris@19: typedef std::vector RealBlock; Chris@19: Chris@19: #endif Chris@19: