home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / CHILDWIN.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  725b  |  22 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef ChildWinH
  3. #define ChildWinH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\Controls.hpp>
  6. #include <vcl\Forms.hpp>
  7. #include <vcl\Graphics.hpp>
  8. #include <vcl\Classes.hpp>
  9. #include <vcl\Windows.hpp>
  10. #include <vcl\System.hpp>
  11. //----------------------------------------------------------------------------
  12. class TMDIChild : public TForm
  13. {
  14. __published:
  15.     void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  16. private:
  17. public:
  18.     virtual __fastcall TMDIChild(TComponent *Owner);
  19. };
  20. //----------------------------------------------------------------------------
  21. #endif    
  22.