22 lines
551 B
C++
22 lines
551 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: G4BSplineSurfaceWithKnots.hh,v 1.1 2000/02/25 15:57:42 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-02-00 $
|
|
//
|
|
#ifndef __B_SPLINESURFACEWITHKNOTS_H
|
|
#define __B_SPLINESURFACEWITHKNOTS_H
|
|
|
|
#include "G4BSplineSurface.hh"
|
|
|
|
|
|
class G4BSplineSurfaceWithKnots : public G4BSplineSurface
|
|
{
|
|
|
|
};
|
|
#endif
|