1234567891011121314151617181920212223242526272829303132333435 |
- //---------------------------------------------------------------------------
- #ifndef Unit1H
- #define Unit1H
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include "IdBaseComponent.hpp"
- #include "IdComponent.hpp"
- #include "IdHTTP.hpp"
- #include "IdIOHandler.hpp"
- #include "IdIOHandlerSocket.hpp"
- #include "IdIOHandlerStack.hpp"
- #include "IdSSL.hpp"
- #include "IdSSLOpenSSL.hpp"
- #include "IdTCPClient.hpp"
- #include "IdTCPConnection.hpp"
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TIdHTTP *IdHTTP1;
- TIdSSLIOHandlerSocketOpenSSL *IdSSLIOHandlerSocketOpenSSL1;
- TButton *Button1;
- void __fastcall Button1Click(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
|