Unitview.h
上传用户:cqslgg
上传日期:2009-12-10
资源大小:128k
文件大小:1k
源码类别:

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef UnitviewH
  3. #define UnitviewH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <jpeg.hpp>
  11. #include <Registry.hpp>
  12. //---------------------------------------------------------------------------
  13. class TFormView : public TForm
  14. {
  15. __published: // IDE-managed Components
  16.         TTimer *Timer1;
  17.         TImage *Image1;
  18.         void __fastcall Timer1Timer(TObject *Sender);
  19.         void __fastcall FormCreate(TObject *Sender);
  20. private: // User declarations
  21. public: // User declarations
  22.         __fastcall TFormView(TComponent* Owner);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern PACKAGE TFormView *FormView;
  26. //---------------------------------------------------------------------------
  27. #endif