Go to the source code of this file.
|
#define | XN_DECLARE_QUEUE_WITH_TRANSLATOR_DECL(decl, Type, ClassName, Translator, base) |
|
#define | XN_DECLARE_QUEUE_WITH_TRANSLATOR(Type, ClassName, Translator, base) XN_DECLARE_QUEUE_WITH_TRANSLATOR_DECL(, Type, ClassName, Translator, base) |
|
#define | XN_DECLARE_QUEUE_DECL(decl, Type, ClassName) |
|
#define | XN_DECLARE_QUEUE(Type, ClassName) XN_DECLARE_QUEUE_DECL(, Type, ClassName) |
|
◆ XN_DECLARE_QUEUE
Declares a queue of type Type, named ClassName, that uses the default translator.
◆ XN_DECLARE_QUEUE_DECL
#define XN_DECLARE_QUEUE_DECL |
( |
|
decl, |
|
|
|
Type, |
|
|
|
ClassName |
|
) |
| |
Value:
#define XN_DECLARE_DEFAULT_VALUE_TRANSLATOR_DECL(decl, Type, ClassName)
Definition XnDataTypes.h:42
#define XN_DEFAULT_TRANSLATOR_NAME(ClassName)
Definition XnDataTypes.h:118
Declares a queue of type Type, named ClassName, that uses the default translator. It is declared using the declspec decl.
◆ XN_DECLARE_QUEUE_WITH_TRANSLATOR
Declares a queue of type Type, named ClassName. The class uses Translator for translating from Type to XnValue. It inherits from base. Note that base must be a derivative of XnQueue.
◆ XN_DECLARE_QUEUE_WITH_TRANSLATOR_DECL
#define XN_DECLARE_QUEUE_WITH_TRANSLATOR_DECL |
( |
|
decl, |
|
|
|
Type, |
|
|
|
ClassName, |
|
|
|
Translator, |
|
|
|
base |
|
) |
| |
Declares a queue of type Type, named ClassName. The class uses Translator for translating from Type to XnValue. It is declared using the declspec decl. It inherits from base. Note that base must be a derivative of XnQueue.