#include <string>
#include <pluginterfaces/base/ftypes.h>
#include <pluginterfaces/vst/vsttypes.h>
Go to the source code of this file.
|
using | TagID = ParamID |
| Defining a type for tags. More...
|
|
using | VstString16 = std::basic_string< Steinberg::char16 > |
| Strings made of char16 characters are represented by the native C++11 type std::basic_string<Steinberg::char16> and properly converted to what is required by the VST classes. More...
|
|
|
constexpr ParamID | UNDEFINED_PARAM_ID = static_cast<ParamID>(-1) |
| Constant used throughout the code to test whether the ParamID represents a valid id or an undefined one. More...
|
|
constexpr TagID | UNDEFINED_TAG_ID = UNDEFINED_PARAM_ID |
| Constant used to test whether the TagID represents a valid id or an undefined one. More...
|
|