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

  1. /****************************************************************************
  2.     $Id: domain.cpp 501.0 1995/03/07 12:26:14 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 the TLDomain class. This class is the abstract
  10.     base class for all domains in the CSP framework.
  11.  
  12.     $Log: domain.cpp $
  13.     Revision 501.0  1995/03/07 12:26:14  RON
  14.     Updated for TLX 5.01
  15.     Revision 1.8  1995/01/31 16:30:12  RON
  16.     Update for release 012
  17.     Added partial support for SunPro C++ compiler
  18.     Revision 1.7  1995/01/06  15:57:43  ron
  19.     Corrected Revision keyword
  20.  
  21.     Revision 1.6  1994/11/16  15:39:01  ron
  22.     Added module info; rearranged #include directives
  23.  
  24.     Revision 1.5  1994/10/10  16:49:38  ron
  25.     Changed to <tlx\solve\csp.h>
  26.  
  27.     Revision 1.4  1994/09/28  14:17:42  ron
  28.     Removed Macintosh-style #include references
  29.  
  30.     Revision 1.3  1994/09/27  20:22:22  ron
  31.     Changed path separator from / to \
  32.  
  33.     Revision 1.2  1994/09/26  15:42:24  ron
  34.     Changed include file references
  35.  
  36.     Revision 1.1  1994/08/16  18:13:02  ron
  37.     Initial revision
  38.  
  39. ****************************************************************************/
  40.  
  41. #include <tlx\501\_build.h>
  42.  
  43. TLX_MODULE_INFO("$Revision: 501.0 $");
  44.  
  45. #include <tlx\501\solve\csp.h>
  46.  
  47. /*-------------------------------------------------------------------------*/
  48.     TLDomain::~TLDomain()
  49.  
  50. /*  Destructor. Does nothing, but is declared virtual for derivation.
  51. ---------------------------------------------------------------------------*/
  52. {
  53. }
  54.  
  55.