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

  1. /****************************************************************************
  2.     $Id: maintest.cpp 501.0 1995/03/07 12:26:16 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 a small test program, intended to verify compilation
  10.     of the library.
  11.  
  12.     $Log: maintest.cpp $
  13.     Revision 501.0  1995/03/07 12:26:16  RON
  14.     Updated for TLX 5.01
  15.     Revision 1.5  1995/01/31 16:30:18  RON
  16.     Update for release 012
  17.     Added partial support for SunPro C++ compiler
  18.     Revision 1.4  1995/01/06  15:58:03  ron
  19.     Corrected Revision keyword
  20.  
  21.     Revision 1.3  1994/11/16  15:41:01  ron
  22.     Added list of modules to test program output
  23.     Added module info; rearranged #include directives
  24.  
  25.     Revision 1.2  1994/10/05  18:40:52  ron
  26.     Small formatting change in output
  27.  
  28.     Revision 1.1  1994/09/28  14:18:48  ron
  29.     Initial revision
  30.  
  31. ****************************************************************************/
  32.  
  33. #include <tlx\501\_build.h>
  34.  
  35. TLX_MODULE_INFO("$Revision: 501.0 $");
  36.  
  37. #include <iostream.h>
  38.  
  39. int main()
  40. {
  41.     cout << "\n" << TLX::Description() << "\n";
  42.     cout << "Modules:\n";
  43.     TLModuleInfo::PrintAll(cout);
  44.     return 0;
  45. }
  46.