17 lines
459 B
C++
17 lines
459 B
C++
// This code implementation is the intellectual property of
|
|
// the RD44 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: G4ElementarySurface.hh,v 2.0 1998/07/02 16:58:32 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-00 $
|
|
//
|
|
#include "G4Surface.hh"
|
|
|
|
class G4ElementarySurface: public G4Surface
|
|
{
|
|
G4Surface* Srf;
|
|
};
|