home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 March / Chip_1998-03_cd.bin / zkuste / matemat / Vyssi / MATH2.ZIP / exmpl-1 / cpp / frmcent.h < prev   
C/C++ Source or Header  |  1997-05-22  |  1KB  |  35 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef frmcentH
  3. #define frmcentH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. #include "NumLab.hpp"
  11. #include <vcl\Buttons.hpp>
  12. #include "RChart.hpp"
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.     TPanel *Panel1;
  18.     TNumLab *NLabProcCnt;
  19.     TBitBtn *BButExit;
  20.     TBitBtn *BButCreateD;
  21.     TBitBtn *BButCalcCent;
  22.     TRChart *RChart1;
  23.     void __fastcall BButExitClick(TObject *Sender);
  24.     void __fastcall BButCreateDClick(TObject *Sender);
  25.     void __fastcall FormCreate(TObject *Sender);
  26.     void __fastcall BButCalcCentClick(TObject *Sender);
  27. private:    // User declarations
  28. public:        // User declarations
  29.     __fastcall TForm1(TComponent* Owner);
  30. };
  31. //---------------------------------------------------------------------------
  32. extern TForm1 *Form1;
  33. //---------------------------------------------------------------------------
  34. #endif
  35.