Unit1.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. #include "IdBaseComponent.hpp"
  10. #include "IdComponent.hpp"
  11. #include "IdHTTP.hpp"
  12. #include "IdIOHandler.hpp"
  13. #include "IdIOHandlerSocket.hpp"
  14. #include "IdIOHandlerStack.hpp"
  15. #include "IdSSL.hpp"
  16. #include "IdSSLOpenSSL.hpp"
  17. #include "IdTCPClient.hpp"
  18. #include "IdTCPConnection.hpp"
  19. //---------------------------------------------------------------------------
  20. class TForm1 : public TForm
  21. {
  22. __published: // IDE-managed Components
  23. TIdHTTP *IdHTTP1;
  24. TIdSSLIOHandlerSocketOpenSSL *IdSSLIOHandlerSocketOpenSSL1;
  25. TButton *Button1;
  26. void __fastcall Button1Click(TObject *Sender);
  27. private: // User declarations
  28. public: // User declarations
  29. __fastcall TForm1(TComponent* Owner);
  30. };
  31. //---------------------------------------------------------------------------
  32. extern PACKAGE TForm1 *Form1;
  33. //---------------------------------------------------------------------------
  34. #endif