Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
G4strstreambuf.hh
이 파일의 문서화 페이지로 가기
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 //
27 // $Id: G4strstreambuf.hh 110251 2018-05-17 14:09:28Z gcosmo $
28 //
29 // ====================================================================
30 //
31 // G4strstreambuf
32 //
33 // ====================================================================
34 #ifndef G4_STR_STREAM_BUF_HH
35 #define G4_STR_STREAM_BUF_HH
36 
37 #include <streambuf>
38 
39 #include "globals.hh"
40 #include "G4coutDestination.hh"
41 
42 class G4strstreambuf;
43 
44 #ifdef G4MULTITHREADED
45 
46  extern G4GLOB_DLL G4strstreambuf*& _G4coutbuf_p();
47  extern G4GLOB_DLL G4strstreambuf*& _G4cerrbuf_p();
48  #define G4coutbuf (*_G4coutbuf_p())
49  #define G4cerrbuf (*_G4cerrbuf_p())
50 
51 #else // Sequential
52 
55 
56 #endif
57 
58 class G4strstreambuf : public std::basic_streambuf<char>
59 {
60  public:
61 
64 
65  virtual G4int overflow(G4int c=EOF);
66  virtual G4int sync();
67 
68 #ifdef WIN32
69  virtual G4int underflow();
70 #endif
71 
73  inline G4coutDestination* GetDestination() const;
74  inline G4int ReceiveString ();
75 
76  private:
77 
78  char* buffer;
81 
82  // hidden...
85 };
86 
87 #include "G4strstreambuf.icc"
88 
89 #endif
G4strstreambuf & operator=(const G4strstreambuf &)
G4coutDestination * destination
virtual G4int overflow(G4int c=EOF)
G4strstreambuf G4coutbuf
Definition: G4ios.cc:104
#define G4GLOB_DLL
Definition: G4Types.hh:64
virtual G4int sync()
G4int ReceiveString()
void SetDestination(G4coutDestination *dest)
int G4int
Definition: G4Types.hh:78
G4coutDestination * GetDestination() const
G4strstreambuf G4cerrbuf
Definition: G4ios.cc:105