File: vcl_set.h

package info (click to toggle)
insighttoolkit 3.20.1%2Bgit20120521-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 80,652 kB
  • sloc: cpp: 458,133; ansic: 196,223; fortran: 28,000; python: 3,839; tcl: 1,811; sh: 1,184; java: 583; makefile: 430; csh: 220; perl: 193; xml: 20
file content (27 lines) | stat: -rw-r--r-- 653 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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_