Unit1.~h
上传用户:z6200320
上传日期:2013-04-04
资源大小:352k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published: // IDE-managed Components
  13. TMemo *Memo1;
  14. TGroupBox *GroupBox1;
  15. TRadioButton *FIFO;
  16. TRadioButton *LRU;
  17. TButton *Btn_Run;
  18. void __fastcall Btn_RunClick(TObject *Sender);
  19. private: // User declarations
  20. public: // User declarations
  21. __fastcall TForm1(TComponent* Owner);
  22. };
  23. //---------------------------------------------------------------------------
  24. extern PACKAGE TForm1 *Form1;
  25. //---------------------------------------------------------------------------
  26. #endif
  27.