home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / STACK.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  5KB  |  124 lines

  1. #ifndef __STD_STACK__
  2. #define __STD_STACK__
  3. /* $Revision:   8.1  $ */
  4.  
  5. /***************************************************************************
  6.  *
  7.  * stack - Declaration for the Standard Library stack class
  8.  *
  9.  * $Id: stack,v 1.14 1995/09/29 21:47:10 lijewski Exp $
  10.  *
  11.  ***************************************************************************
  12.  *
  13.  * Copyright (c) 1994
  14.  * Hewlett-Packard Company
  15.  *
  16.  * Permission to use, copy, modify, distribute and sell this software
  17.  * and its documentation for any purpose is hereby granted without fee,
  18.  * provided that the above copyright notice appear in all copies and
  19.  * that both that copyright notice and this permission notice appear
  20.  * in supporting documentation.  Hewlett-Packard Company makes no
  21.  * representations about the suitability of this software for any
  22.  * purpose.  It is provided "as is" without express or implied warranty.
  23.  *
  24.  *
  25.  ***************************************************************************
  26.  *
  27.  * (c) Copyright 1994, 1995 Rogue Wave Software, Inc.
  28.  * ALL RIGHTS RESERVED
  29.  *
  30.  * The software and information contained herein are proprietary to, and
  31.  * comprise valuable trade secrets of, Rogue Wave Software, Inc., which
  32.  * intends to preserve as trade secrets such software and information.
  33.  * This software is furnished pursuant to a written license agreement and
  34.  * may be used, copied, transmitted, and stored only in accordance with
  35.  * the terms of such license and with the inclusion of the above copyright
  36.  * notice.  This software and information or any other copies thereof may
  37.  * not be provided or otherwise made available to any other person.
  38.  *
  39.  * Notwithstanding any other lease or license that may pertain to, or
  40.  * accompany the delivery of, this computer software and information, the
  41.  * rights of the Government regarding its use, reproduction and disclosure
  42.  * are as set forth in Section 52.227-19 of the FARS Computer
  43.  * Software-Restricted Rights clause.
  44.  *
  45.  * Use, duplication, or disclosure by the Government is subject to
  46.  * restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in
  47.  * Technical Data and Computer Software clause at DFARS 252.227-7013.
  48.  * Contractor/Manufacturer is Rogue Wave Software, Inc.,
  49.  * P.O. Box 2328, Corvallis, Oregon 97339.
  50.  *
  51.  * This computer software and information is distributed with "restricted
  52.  * rights."  Use, duplication or disclosure is subject to restrictions as
  53.  * set forth in NASA FAR SUP 18-52.227-79 (April 1985) "Commercial
  54.  * Computer Software-Restricted Rights (April 1985)."  If the Clause at
  55.  * 18-52.227-74 "Rights in Data General" is specified in the contract,
  56.  * then the "Alternate III" clause applies.
  57.  *
  58.  **************************************************************************/
  59.  
  60. #include <stdcomp.h>
  61.  
  62. #include <algorith>
  63. #include <deque>
  64.  
  65. #ifndef RWSTD_NO_NAMESPACE
  66. namespace std {
  67. #endif
  68.  
  69. #ifdef RWSTD_NO_UNDECLARED_FRIEND
  70. template <class T, class Container> class stack;
  71. template <class T, class Container>
  72. bool operator==(const stack<T,Container>& x, const stack<T,Container>& y);
  73. template <class T, class Container>
  74. bool operator<(const stack<T,Container>& x, const stack<T,Container>& y);
  75. #endif
  76.  
  77. #ifndef RWSTD_NO_DEFAULT_TEMPLATES
  78. template <class T, class Container = deque<T> >
  79. #else
  80. template <class T, class Container>
  81. #endif
  82. class stack
  83. {
  84.     friend bool operator== (const stack<T,Container>& x,
  85.                             const stack<T,Container>& y);
  86.     friend bool operator< (const stack<T,Container>& x,
  87.                            const stack<T,Container>& y);
  88.   public:
  89.  
  90.     typedef typename Container::value_type  value_type;
  91.     typedef typename Container::size_type   size_type;
  92.  
  93.   protected:
  94.  
  95.     Container c;
  96.  
  97.   public:
  98.  
  99.     bool              empty ()                    const { return c.empty(); }
  100.     size_type         size  ()                    const { return c.size();  }
  101.     value_type&       top   ()                          { return c.back();  }
  102.     const value_type& top   ()                    const { return c.back();  }
  103.     void              push  (const value_type& x)       { c.push_back(x);   }
  104.     void              pop   ()                          { c.pop_back();     }
  105. };
  106.  
  107. template <class T, class Container>
  108. inline bool operator== (const stack<T,Container>& x, const stack<T,Container>& y)
  109. {
  110.     return x.c == y.c;
  111. }
  112.  
  113. template <class T, class Container>
  114. inline bool operator< (const stack<T,Container>& x, const stack<T,Container>& y)
  115. {
  116.     return x.c < y.c;
  117. }
  118.  
  119. #ifndef RWSTD_NO_NAMESPACE
  120. }
  121. #endif
  122.  
  123. #endif /*__STD_STACK__*/
  124.