home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tlx501.zip / TEMPLATE / SLIST.CPP < prev    next >
C/C++ Source or Header  |  1996-01-05  |  1KB  |  52 lines

  1. /****************************************************************************
  2.     $Id: slist.cpp 501.0 1995/03/07 12:27:02 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 TLSList<T>.
  10.  
  11.     $Log: slist.cpp $
  12.     Revision 501.0  1995/03/07 12:27:02  RON
  13.     Updated for TLX 5.01
  14.     Revision 1.5  1995/01/31 16:30:50  RON
  15.     Update for release 012
  16.     Added partial support for SunPro C++ compiler
  17.     Revision 1.4  1994/09/28  14:42:28  ron
  18.     Removed Macintosh-style #include references
  19.  
  20.     Revision 1.3  1994/09/27  20:27:39  ron
  21.     Changed path separator from / to \
  22.  
  23.     Revision 1.2  1994/09/26  15:35:06  ron
  24.     Changed include file references
  25.  
  26.     Revision 1.1  1994/08/16  18:15:33  ron
  27.     Initial revision
  28.  
  29. ****************************************************************************/
  30.  
  31. #ifndef _TLX_SLIST_CPP
  32. #define _TLX_SLIST_CPP
  33.  
  34. //----- System headers
  35.  
  36. //----- Project headers
  37.  
  38. #ifndef _TLX_SLISTS_H
  39. #include <tlx\501\dlists.h>    // Class declaration
  40. #endif
  41.  
  42. /*-------------------------------------------------------------------------*/
  43.     template<class T> TLSList<T>::TLSList(bool aOwner)
  44.  
  45. /*  Constructor, also doubles as default constructor. Creates an empty list.
  46. ---------------------------------------------------------------------------*/
  47. : TLSLBase(aOwner)
  48. {
  49. }
  50.  
  51. #endif    // _TLX_SLIST_CPP
  52.