35 lines
858 B
C++
35 lines
858 B
C++
// This code implementation is the intellectual property of
|
|
// the GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4coutDestination.hh,v 1.3 2000/11/20 17:26:47 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
//
|
|
// ---------------------------------------------------------------
|
|
// GEANT 4 class header file
|
|
//
|
|
// G4coutDestination.hh
|
|
//
|
|
// ---------------------------------------------------------------
|
|
#ifndef G4COUTDESTINATION_HH
|
|
#define G4COUTDESTINATION_HH
|
|
|
|
#include "globals.hh"
|
|
|
|
class G4coutDestination
|
|
{
|
|
public:
|
|
|
|
G4coutDestination(){}
|
|
virtual ~G4coutDestination(){}
|
|
|
|
virtual G4int ReceiveG4cout(G4String){return 0;}
|
|
virtual G4int ReceiveG4cerr(G4String){return 0;}
|
|
};
|
|
|
|
#endif
|