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

37 lines
774 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: G4Point3DList.hh,v 1.4.2.1 1999/12/07 20:48:49 gunter Exp $
// GEANT4 tag $Name: geant4-01-00 $
//
//
// John Allison July 1995
// Class Description:
// A set of 3D points.
// Class Description - End:
#ifndef G4POINT3DLIST_HH
#define G4POINT3DLIST_HH
#include "g4rw/tvordvec.h"
#include "G4Point3D.hh"
class ostream;
class G4Point3DList: public G4RWTValOrderedVector<G4Point3D> {
friend ostream& operator << (ostream& os, const G4Point3DList& points);
public:
virtual ~G4Point3DList();
};
#endif