#include <XnQueue.h>
#include <XnOS.h>
Go to the source code of this file.
◆ XN_DECLARE_THREAD_SAFE_QUEUE
#define XN_DECLARE_THREAD_SAFE_QUEUE |
( |
| Type, |
|
|
| ClassName ) |
Value:
#define XN_DECLARE_THREAD_SAFE_QUEUE_DECL(decl, Type, ClassName)
Definition XnThreadSafeQueue.h:145
Declares a thread safe queue of type Type, named ClassName, that uses the default translator.
◆ XN_DECLARE_THREAD_SAFE_QUEUE_DECL
#define XN_DECLARE_THREAD_SAFE_QUEUE_DECL |
( |
| decl, |
|
|
| Type, |
|
|
| ClassName ) |
Value:
#define XN_DECLARE_DEFAULT_VALUE_TRANSLATOR_DECL(decl, Type, ClassName)
Definition XnDataTypes.h:41
#define XN_DEFAULT_TRANSLATOR_NAME(ClassName)
Definition XnDataTypes.h:117
Declares a thread safe queue of type Type, named ClassName, that uses the default translator. It is declared using the declspec decl.
◆ XN_DECLARE_THREAD_SAFE_QUEUE_WITH_TRANSLATOR
#define XN_DECLARE_THREAD_SAFE_QUEUE_WITH_TRANSLATOR |
( |
| Type, |
|
|
| ClassName, |
|
|
| Translator ) |
Value:
#define XN_DECLARE_THREAD_SAFE_QUEUE_WITH_TRANSLATOR_DECL(decl, Type, ClassName, Translator)
Definition XnThreadSafeQueue.h:100
Declares a thread safe 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_THREAD_SAFE_QUEUE_WITH_TRANSLATOR_DECL
#define XN_DECLARE_THREAD_SAFE_QUEUE_WITH_TRANSLATOR_DECL |
( |
| decl, |
|
|
| Type, |
|
|
| ClassName, |
|
|
| Translator ) |
Declares a thread safe 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.