Go to the documentation of this file.
37#ifndef _VAMP_SDK_PLUGGUARD_H_
38#define _VAMP_SDK_PLUGGUARD_H_
70#ifndef _VAMP_IN_HOSTSDK
72#define _VAMP_IN_PLUGINSDK 1
74#define VAMP_SDK_VERSION "2.10"
75#define VAMP_SDK_MAJOR_VERSION 2
76#define VAMP_SDK_MINOR_VERSION 10
78#ifdef _VAMP_NO_PLUGIN_NAMESPACE
79#define _VAMP_SDK_PLUGSPACE_BEGIN(h)
80#define _VAMP_SDK_PLUGSPACE_END(h)
82#ifdef _VAMP_PLUGIN_IN_HOST_NAMESPACE
83#define _VAMP_SDK_PLUGSPACE_BEGIN(h) \
86#define _VAMP_SDK_PLUGSPACE_END(h) \
88 using namespace _VampHost;
90#define _VAMP_SDK_PLUGSPACE_BEGIN(h) \
91 namespace _VampPlugin {
93#define _VAMP_SDK_PLUGSPACE_END(h) \
95 using namespace _VampPlugin;