File: vcl_streambuf.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 (31 lines) | stat: -rw-r--r-- 681 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
#ifndef vcl_streambuf_h_
#define vcl_streambuf_h_
/*
  fsm
*/

// Purpose: to #define vcl_streambuf to std::streambuf on 
// conforming implementations and to fix the non-conforming 
// ones.

#include "vcl_iostream.h" // to get vcl_ios_*

//#ifdef VCL_WIN32
//# include <streambuf>
//# define vcl_streambuf std::streambuf

#if defined(VCL_SGI_CC_720)
# include <iostream.h>
# define vcl_generic_streambuf_STD /* */
# include "generic/vcl_streambuf.h"

#elif defined(VCL_GCC) && !defined(GNU_LIBSTDCXX_V3)
# include <streambuf.h>
# define vcl_generic_streambuf_STD /* */
# include "generic/vcl_streambuf.h"

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

#endif // vcl_streambuf_h_