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

  1.  
  2.  
  3. #ifndef _genseq_h_ /* Thu Sep 15 09:56:37 1994 */
  4. #define _genseq_h_
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. /*
  12.  *
  13.  *          Copyright (C) 1994, M. A. Sridhar
  14.  *  
  15.  *
  16.  *     This software is Copyright M. A. Sridhar, 1994. You are free
  17.  *     to copy, modify or distribute this software  as you see fit,
  18.  *     and to use  it  for  any  purpose, provided   this copyright
  19.  *     notice and the following   disclaimer are included  with all
  20.  *     copies.
  21.  *
  22.  *                        DISCLAIMER
  23.  *
  24.  *     The author makes no warranties, either expressed or implied,
  25.  *     with respect  to  this  software, its  quality, performance,
  26.  *     merchantability, or fitness for any particular purpose. This
  27.  *     software is distributed  AS IS.  The  user of this  software
  28.  *     assumes all risks  as to its quality  and performance. In no
  29.  *     event shall the author be liable for any direct, indirect or
  30.  *     consequential damages, even if the  author has been  advised
  31.  *     as to the possibility of such damages.
  32.  *
  33.  */
  34.  
  35.  
  36.  
  37.  
  38. // This is a "generic" sequence of void pointers.
  39.  
  40. #ifdef __GNUC__
  41. #pragma interface
  42. #endif
  43.  
  44.  
  45. #include "base/sequence.h"
  46. #include "base/cmparatr.h"
  47.  
  48. class CL_EXPORT CL_GenericSequence: public CL_Sequence <CL_VoidPtr> {
  49.  
  50. public:
  51.     CL_GenericSequence (long initial_size = 0, CL_AbstractComparator*
  52.                         cmp = NULL);
  53.     // Create a generic sequence of size 0. The second parameter specifies
  54.     // a comparator to be used for the sorting and searching methods; if
  55.     // none is specified, {\tt CL_Basics <CL_VoidPtr> :: Compare} is used
  56.     // for comparison. If one is given, it is assumed to be borrowed from
  57.     // the caller of this constructor, and the latter must ensure that it
  58.     // exists as long as this Sequence exists.
  59.  
  60.     CL_GenericSequence (const CL_GenericSequence& s);
  61.     // Copy constructor.
  62.  
  63.     const char* ClassName () const {return "CL_GenericSequence";};
  64.  
  65.     CL_Object* Clone () const {return new CL_GenericSequence (*this);};
  66.  
  67. protected:
  68.     short _Compare (const CL_VoidPtr&, const CL_VoidPtr&) const;
  69.     // Override the inherited virtual method.
  70.  
  71.     virtual bool       _ReadElement (const CL_Stream&, long)
  72.         {NotImplemented ("_ReadElement"); return FALSE;};
  73.     
  74.     virtual bool       _WriteElement (CL_Stream&, long) const
  75.         {NotImplemented ("_WriteElement"); return FALSE;};
  76.  
  77.     CL_AbstractComparator* _cmp;
  78. };
  79.  
  80.  
  81. #endif /* _genseq_h_ */
  82.