home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tlx501.zip / SRC / DLQBASE.CPP < prev    next >
C/C++ Source or Header  |  1996-07-08  |  2KB  |  53 lines

  1. /****************************************************************************
  2.     $Id: dlqbase.cpp 501.0 1995/03/07 12:26:12 RON Exp $
  3.  
  4.     Copyright (c) 1991-95 Tarma Software Research. All rights reserved.
  5.  
  6.     Project:    Tarma Library for C++ V5.0
  7.     Author:    Ron van der Wal
  8.  
  9.     Implementation of class TLDLQueueBase.
  10.  
  11.     $Log: dlqbase.cpp $
  12.     Revision 501.0  1995/03/07 12:26:12  RON
  13.     Updated for TLX 5.01
  14.     Revision 1.7  1995/01/31 16:30:10  RON
  15.     Update for release 012
  16.     Added partial support for SunPro C++ compiler
  17.     Revision 1.6  1995/01/06  15:57:40  ron
  18.     Corrected Revision keyword
  19.  
  20.     Revision 1.5  1994/11/16  15:38:43  ron
  21.     Added module info; rearranged #include directives
  22.  
  23.     Revision 1.4  1994/09/28  14:17:20  ron
  24.     Removed Macintosh-style #include references
  25.  
  26.     Revision 1.3  1994/09/27  20:22:17  ron
  27.     Changed path separator from / to \
  28.  
  29.     Revision 1.2  1994/09/26  15:41:59  ron
  30.     Changed include file references
  31.  
  32.     Revision 1.1  1994/08/16  18:13:00  ron
  33.     Initial revision
  34.  
  35. ****************************************************************************/
  36.  
  37. #include <tlx\501\_build.h>
  38.  
  39. TLX_MODULE_INFO("$Revision: 501.0 $");
  40.  
  41. #include <tlx\501\dlists.h>        // Class declaration
  42.  
  43. /*-------------------------------------------------------------------------*/
  44.     TLDLQueueBase::TLDLQueueBase(bool aOwner)
  45.  
  46. /*  Constructor, also doubles as default constructor. Creates an empty
  47.     queue.
  48. ---------------------------------------------------------------------------*/
  49. : TLDLBase(aOwner)
  50. {
  51. }
  52.  
  53.