home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / PowerPlant / CURLPushButton 2.3 / CURLPushButton Test 68k / CURLTestDialog.h < prev    next >
Encoding:
Text File  |  1997-01-29  |  649 b   |  32 lines  |  [TEXT/CWIE]

  1. // CURLTestDialog.h ©1997 John C. Daub.  All rights reserved.
  2.  
  3. //    This is the dialog handler used to demonstrate the CURLPushButton PowerPlant
  4. //    class.  It's just a hack to demonstrate, not necessarily good coding
  5. //    practice.
  6.  
  7. #pragma once
  8.  
  9. #include <UModalDialogs.h>
  10. #include "CInternetConfig.h"
  11.  
  12.  
  13. class CURLTestDialog : public StDialogHandler {
  14.  
  15.     public:
  16.     
  17.         static    void        DoAboutBox( LCommander *inSuper );
  18.         
  19.                             CURLTestDialog( ResIDT, LCommander *);
  20.                 virtual        ~CURLTestDialog();
  21.         
  22.     
  23.     
  24.     protected:
  25.     
  26.         virtual    void        ListenToMessage( MessageT    inMessage,
  27.                                             void*        ioParam );
  28.  
  29.         CInternetConfig        *mIC;
  30.         Boolean                mICWorking;
  31.  
  32. };