comparison src/vamp-hostsdk/PluginHostAdapter.cpp @ 263:4454843ff384

* OK, we're going to have to place the host stuff in its own namespace too. Otherwise our new SV build on OSX fails to load old plugins because they pull in the host namespace PluginBase and thus report the wrong Vamp version... *sigh*
author cannam
date Thu, 20 Nov 2008 15:01:30 +0000
parents 7d678f889789
children 34754c776530
comparison
equal deleted inserted replaced
262:4a0e998a1afd 263:4454843ff384
38 #include <cstdlib> 38 #include <cstdlib>
39 39
40 #if ( VAMP_SDK_MAJOR_VERSION != 2 || VAMP_SDK_MINOR_VERSION != 0 ) 40 #if ( VAMP_SDK_MAJOR_VERSION != 2 || VAMP_SDK_MINOR_VERSION != 0 )
41 #error Incorrect Vamp SDK header included (not the expected 2.0 SDK) 41 #error Incorrect Vamp SDK header included (not the expected 2.0 SDK)
42 #endif 42 #endif
43
44 _VAMP_SDK_HOSTSPACE_BEGIN(PluginHostAdapter.cpp)
43 45
44 namespace Vamp 46 namespace Vamp
45 { 47 {
46 48
47 PluginHostAdapter::PluginHostAdapter(const VampPluginDescriptor *descriptor, 49 PluginHostAdapter::PluginHostAdapter(const VampPluginDescriptor *descriptor,
447 } 449 }
448 } 450 }
449 } 451 }
450 452
451 } 453 }
454
455 _VAMP_SDK_HOSTSPACE_END(PluginHostAdapter.cpp)
456