Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.10 KB | None | 0 0
  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef Unit1H
  4. #define Unit1H
  5. //---------------------------------------------------------------------------
  6. #include <Classes.hpp>
  7. #include <Controls.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <Forms.hpp>
  10. #include "pass.h"
  11. #include "cargo.h"
  12. #include "personal.h"
  13. #include <ExtCtrls.hpp>
  14. //---------------------------------------------------------------------------
  15. class TForm1 : public TForm
  16. {
  17. __published:    // IDE-managed Components
  18.     TButton *Button1;
  19.     TTimer *Timer1;
  20.     void __fastcall Button1Click(TObject *Sender);
  21.     void __fastcall FormCreate(TObject *Sender);
  22.     void __fastcall Timer1Timer(TObject *Sender);
  23. private:
  24.     pass **Pass;
  25.     cargo **Cargo;
  26.     personal **Personal;
  27.     int NumberOfPass;
  28.     int NumberOfCargo;
  29.     int NumberOfPersonal;   // User declarations
  30. public:     // User declarations
  31.     __fastcall TForm1(TComponent* Owner);
  32. };
  33. //---------------------------------------------------------------------------
  34. extern PACKAGE TForm1 *Form1;
  35. //---------------------------------------------------------------------------
  36. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement