home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / APXDLG.PAK / APXDLGDC.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  983 b   |  44 lines

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