33 lines
696 B
C++
33 lines
696 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: G4Point3DList.hh,v 1.2 1999/05/12 16:10:51 johna Exp $
|
|
// GEANT4 tag $Name: geant4-00-01 $
|
|
//
|
|
//
|
|
// John Allison July 1995
|
|
|
|
#ifndef G4POINT3DLIST_HH
|
|
#define G4POINT3DLIST_HH
|
|
|
|
#include <rw/tvordvec.h>
|
|
#include "G4Point3D.hh"
|
|
|
|
class ostream;
|
|
|
|
class G4Point3DList: public RWTValOrderedVector<G4Point3D> {
|
|
|
|
friend ostream& operator << (ostream& os, const G4Point3DList& points);
|
|
|
|
public:
|
|
|
|
virtual ~G4Point3DList();
|
|
|
|
};
|
|
|
|
#endif
|