File: vcl_string.h

package info (click to toggle)
insighttoolkit 3.6.0-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 94,956 kB
  • ctags: 74,981
  • sloc: cpp: 355,621; ansic: 195,070; fortran: 28,713; python: 3,802; tcl: 1,996; sh: 1,175; java: 583; makefile: 415; csh: 184; perl: 175
file content (34 lines) | stat: -rw-r--r-- 764 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
28
29
30
31
32
33
34
//-*- c++ -*-------------------------------------------------------------------
#ifndef vcl_string_h_
#define vcl_string_h_

#include "vcl_compiler.h"

#if defined(VCL_GCC) && !defined(GNU_LIBSTDCXX_V3)
# include "iso/vcl_string.h"
# undef  vcl_char_traits
# define vcl_char_traits   string_char_traits

#elif defined(VCL_VC60)
# include "win32-vc60/vcl_string.h"

#elif defined(VCL_SGI_CC_7)
# include "sgi/vcl_string.h"

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

//// who needs to know this?
//#if defined(VCL_GCC_EGCS) || defined(VCL_SUNPRO_CC)
//# define VCL_STRING_IS_TYPEDEF 1
//#endif

#define VCL_BASIC_STRING_INSTANTIATE \
extern "include vcl_string.txx instead"

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

#endif // vcl_string_h_