Mercurial > hg > piper-vamp-js-builds
comparison tipic/tipic.cpp @ 16:618391468c8e
Add TIPIC build
author | Chris Cannam |
---|---|
date | Tue, 14 Mar 2017 14:40:52 +0000 |
parents | |
children | ac94242cf562 |
comparison
equal
deleted
inserted
replaced
15:87fc2ac1a25a | 16:618391468c8e |
---|---|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ | |
2 | |
3 #include "PiperExport.h" | |
4 | |
5 #include "TipicVampPlugin.h" | |
6 | |
7 using piper_vamp_js::PiperAdapter; | |
8 using piper_vamp_js::PiperPluginLibrary; | |
9 | |
10 static std::string soname("tipic"); | |
11 | |
12 static PiperAdapter<Tipic> tipicAdapter(soname); | |
13 | |
14 static PiperPluginLibrary library({ | |
15 &tipicAdapter | |
16 }); | |
17 | |
18 PIPER_EXPORT_LIBRARY(library); | |
19 |