home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / yacl-012.zip / base / genseq.cxx < prev    next >
C/C++ Source or Header  |  1995-04-04  |  2KB  |  70 lines

  1.  
  2.  
  3.  
  4.  
  5. /*
  6.  *
  7.  *          Copyright (C) 1994, M. A. Sridhar
  8.  *  
  9.  *
  10.  *     This software is Copyright M. A. Sridhar, 1994. You are free
  11.  *     to copy, modify or distribute this software  as you see fit,
  12.  *     and to use  it  for  any  purpose, provided   this copyright
  13.  *     notice and the following   disclaimer are included  with all
  14.  *     copies.
  15.  *
  16.  *                        DISCLAIMER
  17.  *
  18.  *     The author makes no warranties, either expressed or implied,
  19.  *     with respect  to  this  software, its  quality, performance,
  20.  *     merchantability, or fitness for any particular purpose. This
  21.  *     software is distributed  AS IS.  The  user of this  software
  22.  *     assumes all risks  as to its quality  and performance. In no
  23.  *     event shall the author be liable for any direct, indirect or
  24.  *     consequential damages, even if the  author has been  advised
  25.  *     as to the possibility of such damages.
  26.  *
  27.  */
  28.  
  29.  
  30.  
  31.  
  32.  
  33. #ifdef __GNUC__
  34. #pragma implementation
  35. #endif
  36.  
  37.  
  38.  
  39. #ifndef __BORLANDC__
  40. #include "base/seqimp.cxx"
  41. #endif
  42.  
  43. #if defined(__GNUC__) && __GNUC_MINOR__ >= 6
  44. template class CL_Sequence<CL_VoidPtr>;
  45. #endif
  46.  
  47. #include "base/genseq.h"
  48.  
  49.  
  50. CL_GenericSequence::CL_GenericSequence (long initial_size,
  51.                                         CL_AbstractComparator*  cmp)
  52. : CL_Sequence<CL_VoidPtr> (initial_size), _cmp (cmp)
  53. {
  54. }
  55.  
  56. CL_GenericSequence::CL_GenericSequence (const CL_GenericSequence& s)
  57. : CL_Sequence<CL_VoidPtr> (s)
  58. {
  59.     _cmp = s._cmp;
  60. }
  61.  
  62.  
  63.  
  64. short CL_GenericSequence::_Compare (const CL_VoidPtr& p1, const CL_VoidPtr& p2)
  65.     const
  66. {
  67.     return _cmp ? (*_cmp) (p1, p2) : CL_Basics<CL_VoidPtr>::Compare (p1, p2);
  68. }
  69.  
  70.