home *** CD-ROM | disk | FTP | other *** search
/ Total C++ 2 / TOTALCTWO.iso / borland / mdidlg.pak / TEST.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  992b  |  66 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (c) 1995, 1995 by Borland International, All Rights Reserved
  4. //
  5. // Filename:    Test.cpp
  6. //
  7. // Date:        27-Apr-95
  8. //
  9. // Description:
  10. //----------------------------------------------------------------------------
  11. #include <owl/pch.h>
  12. #include "Test.h"
  13.  
  14.  
  15. //
  16. // TestChild constructor
  17. //
  18. TTestWindow::TTestWindow(TWindow* parent, const char far* title,
  19.   TModule* module)
  20. :
  21.   TWindow(parent, title, module)
  22. {
  23. }
  24.  
  25.  
  26. //
  27. // TestChild destructor
  28. //
  29. TTestWindow::~TTestWindow()
  30. {
  31. }
  32.  
  33.  
  34. //
  35. // SetupWindow
  36. //
  37. void
  38. TTestWindow::SetupWindow()
  39. {
  40.   TWindow::SetupWindow();
  41.   // put new stuff here
  42.   //
  43.  
  44. }
  45.  
  46.  
  47. //
  48. // CleanupWindow
  49. //
  50. void TTestWindow::CleanupWindow()
  51. {
  52.   // put new stuff here
  53.   //
  54.  
  55.   TWindow::CleanupWindow();
  56. }
  57.  
  58.  
  59. //
  60. // Response table for TestChild
  61. //
  62. DEFINE_RESPONSE_TABLE1(TTestWindow, TWindow)
  63. END_RESPONSE_TABLE;
  64.  
  65.  
  66.