//--------------------------------------------------------------------------- #ifndef cipherfrmH #define cipherfrmH //--------------------------------------------------------------------------- #include #include #include #include #include #include //--------------------------------------------------------------------------- class TCipherForm : public TForm { __published: // IDE-managed Components TPanel *Panel1; TPanel *Panel2; TPanel *Panel3; TLabel *Label1; TLabel *Label2; TEdit *cipherEdit; TMemo *Memo1; TButton *Button1; TButton *Button2; TButton *Button3; void __fastcall Button2Click(TObject *Sender); void __fastcall FormShow(TObject *Sender); void __fastcall FormClose(TObject *Sender, TCloseAction &Action); private: // User declarations public: // User declarations std::string confFile; std::string modName; __fastcall TCipherForm(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TCipherForm *CipherForm; //--------------------------------------------------------------------------- #endif