// 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: queue,v 1.1 2000/08/02 09:49:56 gcosmo Exp $
// GEANT4 tag $Name: geant4-04-00 $
//
//      ---------------- queue ----------------
//
#ifndef G4_QUEUE_H
#define G4_QUEUE_H

#ifdef G4USE_OLDSTL
  #include <queue.h>
#else
  #include <queue>
#endif /* G4USE_OLDSTL */

#endif /* G4_QUEUE_H */

