comparison plugins/ChromagramPlugin.h @ 3:991d0fe8bb27

* Add plugin entry point and make it build correctly
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 06 Apr 2006 12:02:34 +0000
parents 3f318eae66a2
children 641ce27165bd
comparison
equal deleted inserted replaced
2:c10bbd8fe62a 3:991d0fe8bb27
5 5
6 Centre for Digital Music, Queen Mary, University of London. 6 Centre for Digital Music, Queen Mary, University of London.
7 All rights reserved. 7 All rights reserved.
8 */ 8 */
9 9
10 //!!! This guard inadequate, must be unique to plugin if plugin is to
11 //be compilable in with app as well as being, well, a plugin
12 #ifndef _CHROMAGRAM_PLUGIN_H_ 10 #ifndef _CHROMAGRAM_PLUGIN_H_
13 #define _CHROMAGRAM_PLUGIN_H_ 11 #define _CHROMAGRAM_PLUGIN_H_
14 12
15 #include "vamp-sdk/Plugin.h" 13 #include <vamp-sdk/Plugin.h>
16 #include "dsp/chromagram/Chromagram.h" 14 #include <dsp/chromagram/Chromagram.h>
17 15
18 #include <queue> 16 #include <queue>
19 17
20 class ChromagramPlugin : public Vamp::Plugin 18 class ChromagramPlugin : public Vamp::Plugin
21 { 19 {