comparison vamp-sdk/Plugin.h @ 230:5ee166dccfff distinct-libraries

* Add include guards; make code compile!
author cannam
date Fri, 07 Nov 2008 14:11:39 +0000
parents d4fbd4e6fdbf
children 521734d2b498
comparison
equal deleted inserted replaced
229:3451f7dfa2be 230:5ee166dccfff
32 shall not be used in advertising or otherwise to promote the sale, 32 shall not be used in advertising or otherwise to promote the sale,
33 use or other dealings in this Software without prior written 33 use or other dealings in this Software without prior written
34 authorization. 34 authorization.
35 */ 35 */
36 36
37 #ifndef _VAMP_PLUGIN_H_ 37 #ifndef _VAMP_SDK_PLUGIN_H_
38 #define _VAMP_PLUGIN_H_ 38 #define _VAMP_SDK_PLUGIN_H_
39
40 #include "PluginBase.h"
41 #include "RealTime.h"
42 39
43 #include <string> 40 #include <string>
44 #include <vector> 41 #include <vector>
45 #include <map> 42 #include <map>
43
44 #include "PluginBase.h"
45 #include "RealTime.h"
46
47 #include "plugguard.h"
48 _VAMP_SDK_HEADER_BEGIN(Plugin.h)
46 49
47 namespace Vamp { 50 namespace Vamp {
48 51
49 /** 52 /**
50 * \class Plugin Plugin.h <vamp-sdk/Plugin.h> 53 * \class Plugin Plugin.h <vamp-sdk/Plugin.h>
428 float m_inputSampleRate; 431 float m_inputSampleRate;
429 }; 432 };
430 433
431 } 434 }
432 435
436 _VAMP_SDK_HEADER_END(Plugin.h)
437
433 #endif 438 #endif
434 439
435 440
436 441