vcl_set.h

来自「InsightToolkit-1.4.0(有大量的优化算法程序)」· C头文件 代码 · 共 28 行

H
28
字号
#ifndef vcl_set_h_
#define vcl_set_h_

#include "vcl_compiler.h"

// vcl_less<> is a default argument to vcl_set<> and vcl_multiset<>
// so we need this for compilers where vcl_less is a macro.
#include "vcl_functional.h"

// -------------------- emulation
#if !VCL_USE_NATIVE_STL
# include "emulation/vcl_set.h"
# include "emulation/vcl_multiset.h"

// -------------------- iso
#else
# include "iso/vcl_set.h"
#endif

#define VCL_SET_INSTANTIATE extern "you must include vcl_set.txx first"
#define VCL_MULTISET_INSTANTIATE extern "you must include vcl_set.txx first"

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

#endif // vcl_set_h_

⌨️ 快捷键说明

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