comparison src/vamp-sdk/PluginAdapter.cpp @ 230:5ee166dccfff distinct-libraries

* Add include guards; make code compile!
author cannam
date Fri, 07 Nov 2008 14:11:39 +0000
parents 6b30e064cab7
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 #include "PluginAdapter.h" 37 #include <vamp-sdk/PluginAdapter.h>
38 38
39 #include <cstring> 39 #include <cstring>
40 #include <cstdlib> 40 #include <cstdlib>
41 41
42 //#define DEBUG_PLUGIN_ADAPTER 1 42 //#define DEBUG_PLUGIN_ADAPTER 1
43
44 namespace _VampPlugin {
43 45
44 namespace Vamp { 46 namespace Vamp {
45 47
46 class PluginAdapterBase::Impl 48 class PluginAdapterBase::Impl
47 { 49 {
869 PluginAdapterBase::Impl::AdapterMap * 871 PluginAdapterBase::Impl::AdapterMap *
870 PluginAdapterBase::Impl::m_adapterMap = 0; 872 PluginAdapterBase::Impl::m_adapterMap = 0;
871 873
872 } 874 }
873 875
876 }
877