LoadingForm.h
上传用户:szb0815
上传日期:2007-06-13
资源大小:338k
文件大小:1k
源码类别:

生物技术

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef LoadingFormH
  3. #define LoadingFormH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <Graphics.hpp>
  11. //---------------------------------------------------------------------------
  12. class TLoading : public TForm
  13. {
  14. __published: // IDE-managed Components
  15.     TImage *Image1;
  16.     TLabel *Label1;
  17.     TLabel *Label2;
  18. private: // User declarations
  19. public: // User declarations
  20.     __fastcall TLoading(TComponent* Owner);
  21. };
  22. //---------------------------------------------------------------------------
  23. extern PACKAGE TLoading *Loading;
  24. //---------------------------------------------------------------------------
  25. #endif