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

  1. //----------------------------------------------------------------------------
  2. //  Project Animals
  3. //  Borland International
  4. //  Copyright ⌐ 1996. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    Animals Application
  7. //  FILE:         AnmlsDlC.cpp
  8. //  AUTHOR:       
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Source file for implementation of TAnimalsDlgClient (TDialog).
  13. //
  14. //----------------------------------------------------------------------------
  15.  
  16. #include <owl/pch.h>
  17.  
  18. #include "BeastWin.h"
  19. #include "AnmlsDlC.h"
  20.  
  21.  
  22. //{{TAnimalsDlgClient Implementation}}
  23.  
  24.  
  25. //--------------------------------------------------------
  26. // TAnimalsDlgClient
  27. // ~~~~~~~~~~
  28. // Construction/Destruction handling.
  29. //
  30. TAnimalsDlgClient::TAnimalsDlgClient(TWindow* parent, TResId resId,
  31.                                                     TModule* module)
  32. :
  33.   TDialog(parent, resId, module)
  34. {
  35.   // INSERT>> Your constructor code here.
  36. }
  37.  
  38.  
  39. TAnimalsDlgClient::~TAnimalsDlgClient()
  40. {
  41.   Destroy();
  42.  
  43.   // INSERT>> Your destructor code here.
  44. }
  45.  
  46. DEFINE_RESPONSE_TABLE2(TAnimalsDlgClient, TDialog, TVbxEventHandler)
  47. END_RESPONSE_TABLE;
  48.