vcl_queue.h

来自「DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.」· C头文件 代码 · 共 26 行

H
26
字号
#ifndef vcl_queue_h_
#define vcl_queue_h_

#include "vcl_compiler.h"

#if !VCL_USE_NATIVE_STL
# include "emulation/vcl_stack.h"

#elif defined(VCL_GCC_which_one_question_mark)
// egcs and 2.95 have <queue> -- fsm
# include <stack.h>
# define vcl_queue queue

#else
# include "iso/vcl_queue.h"
#endif

#define VCL_QUEUE_INSTANTIATE(T) extern "you must #include vcl_queue.txx"
#define VCL_PRIORITY_QUEUE_INSTANTIATE(T) extern "you must #include vcl_queue.txx"

#if VCL_USE_IMPLICIT_TEMPLATES
# include "vcl_queue.txx"
#endif

#endif // vcl_queue_h_

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?