24 lines
529 B
C++
24 lines
529 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: G4CSGSolid.cc,v 1.2 1999/12/15 14:50:06 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
//
|
|
#include "G4CSGSolid.hh"
|
|
|
|
// Constructor
|
|
// - Base class constructor
|
|
|
|
G4CSGSolid::G4CSGSolid(const G4String& name) :
|
|
G4VSolid(name)
|
|
{
|
|
}
|
|
|
|
G4CSGSolid::~G4CSGSolid()
|
|
{
|
|
}
|