home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / CMTREMOV.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  530b  |  35 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /*
  4.  * CMTREMOV.H
  5.  * Comment remover class.
  6.  *
  7.  * ver 1.0, 30 Jun 1996
  8.  *
  9.  * Public domain by:
  10.  *   Jari Laaksonen
  11.  *   Arkkitehdinkatu 30 A 2
  12.  *   FIN-33720 Tampere
  13.  *   FINLAND
  14.  *
  15.  *   Fidonet : 2:221/360.20
  16.  *   Internet: jla@to.icl.fi
  17.  */
  18.  
  19. #ifndef _CMTREMOV_H_
  20. #define _CMTREMOV_H_
  21.  
  22. #include "cmtparsr.h"
  23.  
  24. class CommentRemover : public CommentParser
  25. {
  26. public:
  27.  
  28. protected:
  29.     virtual void ProcessActions (Event theEvent);
  30.  
  31. };
  32.  
  33. #endif // _CMTREMOV_H_
  34.  
  35.