1*f2ced752SOliver Tappe/* 2*f2ced752SOliver Tappe * 3*f2ced752SOliver Tappe * Copyright (c) 1994 4*f2ced752SOliver Tappe * Hewlett-Packard Company 5*f2ced752SOliver Tappe * 6*f2ced752SOliver Tappe * Permission to use, copy, modify, distribute and sell this software 7*f2ced752SOliver Tappe * and its documentation for any purpose is hereby granted without fee, 8*f2ced752SOliver Tappe * provided that the above copyright notice appear in all copies and 9*f2ced752SOliver Tappe * that both that copyright notice and this permission notice appear 10*f2ced752SOliver Tappe * in supporting documentation. Hewlett-Packard Company makes no 11*f2ced752SOliver Tappe * representations about the suitability of this software for any 12*f2ced752SOliver Tappe * purpose. It is provided "as is" without express or implied warranty. 13*f2ced752SOliver Tappe * 14*f2ced752SOliver Tappe * 15*f2ced752SOliver Tappe * Copyright (c) 1996,1997 16*f2ced752SOliver Tappe * Silicon Graphics Computer Systems, Inc. 17*f2ced752SOliver Tappe * 18*f2ced752SOliver Tappe * Permission to use, copy, modify, distribute and sell this software 19*f2ced752SOliver Tappe * and its documentation for any purpose is hereby granted without fee, 20*f2ced752SOliver Tappe * provided that the above copyright notice appear in all copies and 21*f2ced752SOliver Tappe * that both that copyright notice and this permission notice appear 22*f2ced752SOliver Tappe * in supporting documentation. Silicon Graphics makes no 23*f2ced752SOliver Tappe * representations about the suitability of this software for any 24*f2ced752SOliver Tappe * purpose. It is provided "as is" without express or implied warranty. 25*f2ced752SOliver Tappe */ 26*f2ced752SOliver Tappe 27*f2ced752SOliver Tappe#ifndef __SGI_STL_QUEUE 28*f2ced752SOliver Tappe#define __SGI_STL_QUEUE 29*f2ced752SOliver Tappe 30*f2ced752SOliver Tappe#include <stl_algobase.h> 31*f2ced752SOliver Tappe#include <stl_alloc.h> 32*f2ced752SOliver Tappe#include <stl_construct.h> 33*f2ced752SOliver Tappe#include <stl_uninitialized.h> 34*f2ced752SOliver Tappe#include <stl_vector.h> 35*f2ced752SOliver Tappe#include <stl_bvector.h> 36*f2ced752SOliver Tappe#include <stl_heap.h> 37*f2ced752SOliver Tappe#include <stl_deque.h> 38*f2ced752SOliver Tappe#include <stl_function.h> 39*f2ced752SOliver Tappe#include <stl_queue.h> 40*f2ced752SOliver Tappe 41*f2ced752SOliver Tappe#endif /* __SGI_STL_QUEUE */ 42*f2ced752SOliver Tappe 43*f2ced752SOliver Tappe// Local Variables: 44*f2ced752SOliver Tappe// mode:C++ 45*f2ced752SOliver Tappe// End: 46