home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / ANIMALS.PAK / ANMLSDLC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.0 KB  |  36 lines

  1. //----------------------------------------------------------------------------
  2. //  Project Animals
  3. //  Borland International
  4. //  Copyright ⌐ 1996. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    Animals Application
  7. //  FILE:         AnmlsDlC.h
  8. //  AUTHOR:       
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Class definition for TAnimalsDlgClient (TDialog).
  13. //
  14. //----------------------------------------------------------------------------
  15. #if !defined(anmlsdlc_h)              // Sentry, use file only if it's not already included.
  16. #define anmlsdlc_h
  17.  
  18. #include <owl\pch.h>
  19. #pragma hdrstop
  20. #include <owl\vbxctl.h>
  21. #include "BeastWin.rh"                  // Definition of all resources.
  22.  
  23.  
  24. //{{TDialog = TAnimalsDlgClient}}
  25. class TAnimalsDlgClient : public TDialog, public TVbxEventHandler {
  26.   public:
  27.     TAnimalsDlgClient(TWindow* parent, TResId resId = IDD_ANIMALS, TModule* module = 0);
  28.     virtual ~TAnimalsDlgClient();
  29.  
  30. DECLARE_RESPONSE_TABLE(TAnimalsDlgClient);
  31.  
  32. };    //{{TAnimalsDlgClient}}
  33.  
  34.  
  35. #endif  // anmlsdlc_h sentry.
  36.