Import Geant4 10.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 11:51:14 +02:00
parent e2d2f9810a
commit 286caacf06
12421 changed files with 730077 additions and 502383 deletions
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id$
// $Id: G4strstreambuf.hh 67970 2013-03-13 10:10:06Z gcosmo $
// ====================================================================
//
// G4strstreambuf
@@ -39,12 +39,18 @@
class G4strstreambuf;
#if defined G4GLOB_ALLOC_EXPORT
extern G4DLLEXPORT G4strstreambuf G4coutbuf;
extern G4DLLEXPORT G4strstreambuf G4cerrbuf;
#else
extern G4DLLIMPORT G4strstreambuf G4coutbuf;
extern G4DLLIMPORT G4strstreambuf G4cerrbuf;
#ifdef G4MULTITHREADED
extern G4GLOB_DLL G4ThreadLocal G4strstreambuf *G4coutbuf_p;
extern G4GLOB_DLL G4ThreadLocal G4strstreambuf *G4cerrbuf_p;
#define G4coutbuf (*G4coutbuf_p)
#define G4cerrbuf (*G4cerrbuf_p)
#else // Sequential
extern G4GLOB_DLL G4strstreambuf G4coutbuf;
extern G4GLOB_DLL G4strstreambuf G4cerrbuf;
#endif
class G4strstreambuf : public std::basic_streambuf<char>