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

  1. //----------------------------------------------------------------------------
  2. //  Project ApxDlgDv
  3. //  Borland International
  4. //  Copyright ⌐ 1996. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    ApxDlgDv Application
  7. //  FILE:         apxdlddc.cpp
  8. //  AUTHOR:       
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Source file for implementation of TApxDlgDvDlgClient (TDialog).
  13. //
  14. //----------------------------------------------------------------------------
  15.  
  16. #include <owl/pch.h>
  17.  
  18. #include "apxdlgda.h"
  19. #include "apxdlddc.h"
  20.  
  21.  
  22. //{{TApxDlgDvDlgClient Implementation}}
  23.  
  24.  
  25. //
  26. // Build a response table for all messages/commands handled
  27. // by the application.
  28. //
  29. DEFINE_RESPONSE_TABLE1(TApxDlgDvDlgClient, TDialog)
  30. //{{TApxDlgDvDlgClientRSP_TBL_BEGIN}}
  31. //{{TApxDlgDvDlgClientRSP_TBL_END}}
  32. END_RESPONSE_TABLE;
  33.  
  34.  
  35. //--------------------------------------------------------
  36. // TApxDlgDvDlgClient
  37. // ~~~~~~~~~~
  38. // Construction/Destruction handling.
  39. //
  40. TApxDlgDvDlgClient::TApxDlgDvDlgClient(TDocument& doc, TWindow* parent)
  41. :
  42.   TView(doc), TDialog(parent, IDD_CLIENT)
  43. {
  44.   // INSERT>> Your constructor code here.
  45.  
  46. }
  47.  
  48.  
  49. TApxDlgDvDlgClient::~TApxDlgDvDlgClient()
  50. {
  51.   // INSERT>> Your destructor code here.
  52.  
  53. }
  54.  
  55.  
  56. bool TApxDlgDvDlgClient::CanClose()
  57. {
  58.   return TWindow::CanClose() && Doc->CanClose();
  59. }
  60.