home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / DOCSRC.H < prev    next >
C/C++ Source or Header  |  1997-01-16  |  1KB  |  26 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++ Builder
  3. //Copyright (c) 1987 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef DocSrcH
  7. #define DocSrcH
  8. //---------------------------------------------------------------------------
  9. #include <vcl\Classes.hpp>
  10. #include <vcl\Controls.hpp>
  11. #include <vcl\StdCtrls.hpp>
  12. #include <vcl\Forms.hpp>
  13. //---------------------------------------------------------------------------
  14. class TDocSourceFrm : public TForm
  15. {
  16. __published:    // IDE-managed Components 
  17.     TMemo *Memo1;
  18. private:        // User declarations
  19. public:         // User declarations
  20.     virtual __fastcall TDocSourceFrm(TComponent* Owner);
  21. };
  22. //---------------------------------------------------------------------------
  23. extern TDocSourceFrm *DocSourceFrm;
  24. //---------------------------------------------------------------------------
  25. #endif
  26.