cannam@220: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
cannam@220: 
cannam@220: /*
cannam@220:     Piper C++
cannam@220: 
cannam@220:     Centre for Digital Music, Queen Mary, University of London.
cannam@220:     Copyright 2006-2017 Chris Cannam and QMUL.
cannam@220:   
cannam@220:     Permission is hereby granted, free of charge, to any person
cannam@220:     obtaining a copy of this software and associated documentation
cannam@220:     files (the "Software"), to deal in the Software without
cannam@220:     restriction, including without limitation the rights to use, copy,
cannam@220:     modify, merge, publish, distribute, sublicense, and/or sell copies
cannam@220:     of the Software, and to permit persons to whom the Software is
cannam@220:     furnished to do so, subject to the following conditions:
cannam@220: 
cannam@220:     The above copyright notice and this permission notice shall be
cannam@220:     included in all copies or substantial portions of the Software.
cannam@220: 
cannam@220:     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
cannam@220:     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
cannam@220:     MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
cannam@220:     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
cannam@220:     ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
cannam@220:     CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
cannam@220:     WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
cannam@220: 
cannam@220:     Except as contained in this notice, the names of the Centre for
cannam@220:     Digital Music; Queen Mary, University of London; and Chris Cannam
cannam@220:     shall not be used in advertising or otherwise to promote the sale,
cannam@220:     use or other dealings in this Software without prior written
cannam@220:     authorization.
cannam@220: */
cannam@220: 
cannam@220: #ifndef PIPER_STATIC_OUTPUT_DESCRIPTOR_H
cannam@220: #define PIPER_STATIC_OUTPUT_DESCRIPTOR_H
cannam@220: 
cannam@220: #include <string>
cannam@220: #include <map>
cannam@220: 
cannam@220: namespace piper_vamp {
cannam@220: 
cannam@220: struct StaticOutputDescriptor
cannam@220: {
cannam@220:     std::string typeURI;
cannam@220: };
cannam@220: 
cannam@220: typedef std::map<std::string, StaticOutputDescriptor> StaticOutputInfo;
cannam@220: 
cannam@220: }
cannam@220: 
cannam@220: #endif