Files
geant4/source/tracking/include/G4VTrajectoryPoint.hh
T
2016-06-08 15:28:20 +02:00

29 lines
642 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: G4VTrajectoryPoint.hh,v 1.2.6.1 1999/12/07 20:53:06 gunter Exp $
// GEANT4 tag $Name: geant4-01-00 $
//
#ifndef G4VTrajectoryPoint_h
#define G4VTrajectoryPoint_h 1
class G4VTrajectoryPoint
{
public:
G4VTrajectoryPoint() {;}
virtual ~G4VTrajectoryPoint() {;}
inline int operator==(const G4VTrajectoryPoint& right) const
{ return (this==&right); }
};
#endif