home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / ARASAN_S.ZIP / SHOWMOVE.H < prev    next >
C/C++ Source or Header  |  1993-11-17  |  336b  |  17 lines

  1. // Copyright 1993 by Jon Dart.  All Rights Reserved.
  2.  
  3. #include <wpp.h>
  4. #include <wpdlg.h>
  5. #include "log.h"
  6.  
  7. #define IDP_MOVE_LIST 101
  8.  
  9. class ShowMovesDialog : public WPDialogModal
  10. {
  11. public:
  12.     // handles the Show Moves dialog
  13.     ShowMovesDialog(WPWin *pwin, Log &log);
  14.     void initDlg();
  15. private:
  16.     Log &the_log;
  17. };