cannam@220
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
cannam@220
|
2
|
cannam@220
|
3 /*
|
cannam@220
|
4 Piper C++
|
cannam@220
|
5
|
cannam@220
|
6 Centre for Digital Music, Queen Mary, University of London.
|
cannam@220
|
7 Copyright 2006-2017 Chris Cannam and QMUL.
|
cannam@220
|
8
|
cannam@220
|
9 Permission is hereby granted, free of charge, to any person
|
cannam@220
|
10 obtaining a copy of this software and associated documentation
|
cannam@220
|
11 files (the "Software"), to deal in the Software without
|
cannam@220
|
12 restriction, including without limitation the rights to use, copy,
|
cannam@220
|
13 modify, merge, publish, distribute, sublicense, and/or sell copies
|
cannam@220
|
14 of the Software, and to permit persons to whom the Software is
|
cannam@220
|
15 furnished to do so, subject to the following conditions:
|
cannam@220
|
16
|
cannam@220
|
17 The above copyright notice and this permission notice shall be
|
cannam@220
|
18 included in all copies or substantial portions of the Software.
|
cannam@220
|
19
|
cannam@220
|
20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
cannam@220
|
21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
cannam@220
|
22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
cannam@220
|
23 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
cannam@220
|
24 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
cannam@220
|
25 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
cannam@220
|
26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
cannam@220
|
27
|
cannam@220
|
28 Except as contained in this notice, the names of the Centre for
|
cannam@220
|
29 Digital Music; Queen Mary, University of London; and Chris Cannam
|
cannam@220
|
30 shall not be used in advertising or otherwise to promote the sale,
|
cannam@220
|
31 use or other dealings in this Software without prior written
|
cannam@220
|
32 authorization.
|
cannam@220
|
33 */
|
cannam@220
|
34
|
cannam@220
|
35 #ifndef PIPER_STATIC_OUTPUT_DESCRIPTOR_H
|
cannam@220
|
36 #define PIPER_STATIC_OUTPUT_DESCRIPTOR_H
|
cannam@220
|
37
|
cannam@220
|
38 #include <string>
|
cannam@220
|
39 #include <map>
|
cannam@220
|
40
|
cannam@220
|
41 namespace piper_vamp {
|
cannam@220
|
42
|
cannam@220
|
43 struct StaticOutputDescriptor
|
cannam@220
|
44 {
|
cannam@220
|
45 std::string typeURI;
|
cannam@220
|
46 };
|
cannam@220
|
47
|
cannam@220
|
48 typedef std::map<std::string, StaticOutputDescriptor> StaticOutputInfo;
|
cannam@220
|
49
|
cannam@220
|
50 }
|
cannam@220
|
51
|
cannam@220
|
52 #endif
|