annotate tipic/tipic.cpp @ 44:9c15e0964151

Try this (but it's not enough either)
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 23 Mar 2017 14:03:28 +0000
parents f08863ff8a02
children ac94242cf562
rev   line source
c@43 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
c@43 2
c@43 3 #include "PiperExport.h"
c@43 4
c@43 5 #include "TipicVampPlugin.h"
c@43 6
c@43 7 using piper_vamp_js::PiperAdapter;
c@43 8 using piper_vamp_js::PiperPluginLibrary;
c@43 9
c@43 10 static std::string soname("tipic");
c@43 11
c@43 12 static PiperAdapter<Tipic> tipicAdapter(soname);
c@43 13
c@43 14 static PiperPluginLibrary library({
c@43 15 &tipicAdapter
c@43 16 });
c@43 17
c@43 18 PIPER_EXPORT_LIBRARY(library);
c@43 19