⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test_stlfwd.cxx

📁 DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.
💻 CXX
字号:
// This is vcl/tests/test_stlfwd.cxx
#include <vcl_functional.h>
#include <vcl_string.h> // C++ specific includes first

#if defined(TEST) && TEST == 1
// STL included later - this does not work with vcl/emulation because of "redefinition of default argument"
#include <vcl_stlfwd.h>
#include <vcl_map.h>
#include <vcl_set.h>
#include <vcl_list.h>

#else
#if defined(TEST) && TEST == 2
// stl included first

#include <vcl_map.h>
#include <vcl_set.h>
#include <vcl_list.h>
#include <vcl_stlfwd.h>

#else
// Normal
#include <vcl_stlfwd.h>

#endif
#endif

void f(vcl_map<int, vcl_string,vcl_less<int> >*,
       vcl_set<int,vcl_less<int> >*,
       vcl_list<int>*
      )
{
}


int test_stlfwd_main(int /*argc*/,char* /*argv*/[])
{
  return 0;
}

⌨️ 快捷键说明

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