LiveInstruments.h
Go to the documentation of this file.
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2 
3 /*
4  Silvet
5 
6  A Vamp plugin for note transcription.
7  Centre for Digital Music, Queen Mary University of London.
8 
9  This program is free software; you can redistribute it and/or
10  modify it under the terms of the GNU General Public License as
11  published by the Free Software Foundation; either version 2 of the
12  License, or (at your option) any later version. See the file
13  COPYING included with this distribution for more information.
14 */
15 
16 #ifndef SILVET_LIVE_INSTRUMENTS_H
17 #define SILVET_LIVE_INSTRUMENTS_H
18 
19 #include "Instruments.h"
20 
26 {
27 public:
28  static InstrumentPack adapt(const InstrumentPack &original);
29  static std::vector<InstrumentPack> adaptAll(const std::vector<InstrumentPack> &);
30 };
31 
32 #endif
Definition: Instruments.h:32
static std::vector< InstrumentPack > adaptAll(const std::vector< InstrumentPack > &)
Definition: LiveInstruments.cpp:104
static InstrumentPack adapt(const InstrumentPack &original)
Definition: LiveInstruments.cpp:25
Definition: LiveInstruments.h:25