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

  1. /****************************************************************************
  2.     $Id: srchmon.cpp 501.0 1995/03/07 12:26:22 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 TLSearchMonitor.
  10.  
  11.     $Log: srchmon.cpp $
  12.     Revision 501.0  1995/03/07 12:26:22  RON
  13.     Updated for TLX 5.01
  14.     Revision 1.5  1995/01/31 16:30:26  RON
  15.     Update for release 012
  16.     Added partial support for SunPro C++ compiler
  17.     Revision 1.4  1995/01/06  15:58:26  ron
  18.     Corrected Revision keyword
  19.  
  20.     Revision 1.3  1995/01/05  15:29:02  ron
  21.     Made operator << inline
  22.  
  23.     Revision 1.2  1994/11/16  15:43:26  ron
  24.     Added module info; rearranged #include directives
  25.  
  26.     Revision 1.1  1994/10/07  17:05:25  ron
  27.     Initial revision
  28.  
  29. ****************************************************************************/
  30.  
  31. #include <tlx\501\_build.h>
  32.  
  33. TLX_MODULE_INFO("$Revision: 501.0 $");
  34.  
  35. #include <iostream.h>
  36. #include <tlx\501\solve\searcher.h>
  37.  
  38. /*-------------------------------------------------------------------------*/
  39.     TLSearchMonitor::~TLSearchMonitor()
  40.  
  41. /*  Destructor. Does nothing, but is declared virtual for derivation.
  42. ---------------------------------------------------------------------------*/
  43. {
  44. }
  45.  
  46. /*-------------------------------------------------------------------------*/
  47.     void TLSearchMonitor::OnSearchEvent(TLSearcher *, const Event &)
  48.  
  49. /*  Call-back for events handled by this monitor. The default implementation
  50.     does nothing.
  51. ---------------------------------------------------------------------------*/
  52. {
  53. }
  54.  
  55. /*-------------------------------------------------------------------------*/
  56.     ostream &TLSearchMonitor::PrintOn(ostream &os) const
  57.  
  58. /*  Function to print the contents of the monitor on the given stream,
  59.     usually as part of the searcher's ReportStats() processing.
  60. ---------------------------------------------------------------------------*/
  61. {
  62.     return os << "Default search monitor output";
  63. }
  64.  
  65.