Files
geant4/source/geometry/solids/CSG/include/G4CSGSolid.hh
T
2016-06-08 15:28:20 +02:00

37 lines
802 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.hh,v 1.1.10.1 1999/12/07 20:48:29 gunter Exp $
// GEANT4 tag $Name: geant4-01-00 $
//
//
// class G4CSGSolid
//
// An abstract class for Constructed Solids. Used primarily to
// simplify inheritance tree.
//
// Member functions:
//
// As inherited from G4VSolid
//
// History:
// 27.03.98 J.Apostolakis Created first version.
#ifndef G4CSGSOLID_HH
#define G4CSGSOLID_HH
#include "G4VSolid.hh"
class G4CSGSolid : public G4VSolid {
public:
G4CSGSolid(const G4String& pName);
virtual ~G4CSGSolid();
};
#endif