24 lines
555 B
C++
24 lines
555 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: G4SceneList.hh,v 2.0 1998/07/02 16:48:25 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-00 $
|
|
//
|
|
//
|
|
// John Allison May 1996
|
|
|
|
#ifndef G4SCENELIST_HH
|
|
#define G4SCENELIST_HH
|
|
|
|
#include <rw/tpordvec.h>
|
|
#include "G4VScene.hh"
|
|
|
|
class G4SceneList: public RWTPtrOrderedVector<G4VScene> {
|
|
};
|
|
|
|
#endif
|