Chris@43: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ c@0: Chris@43: /* Chris@43: Vamp Tempogram Plugin Chris@43: Carl Bussey, Centre for Digital Music, Queen Mary University of London Chris@43: Copyright 2014 Queen Mary University of London. Chris@43: Chris@43: This program is free software; you can redistribute it and/or Chris@43: modify it under the terms of the GNU General Public License as Chris@43: published by the Free Software Foundation; either version 2 of the Chris@43: License, or (at your option) any later version. See the file Chris@43: COPYING included with this distribution for more information. Chris@43: */ c@0: c@0: #include c@0: #include c@0: c@14: #include "TempogramPlugin.h" c@0: c@14: static Vamp::PluginAdapter myPluginAdapter; c@0: c@0: c@0: const VampPluginDescriptor * c@0: vampGetPluginDescriptor(unsigned int version, unsigned int index) c@0: { c@0: if (version < 1) return 0; c@0: c@0: switch (index) { c@0: case 0: return myPluginAdapter.getDescriptor(); c@0: default: return 0; c@0: } c@0: } c@0: c@0: