//--------------------------------------------------------------------------- #ifndef PolicySaveH #define PolicySaveH //--------------------------------------------------------------------------- #include #include #include #include #include #include //--------------------------------------------------------------------------- class TPolicySaveForm : public TForm { __published: // IDE-managed Components TLabeledEdit *m_leName; TButton *m_btnOk; TButton *m_btnCancel; TPanel *m_panBack; void __fastcall FormCreate(TObject *Sender); void __fastcall OnOkClick(TObject *Sender); private: // User declarations int m_iType; String m_sType; public: // User declarations String m_name; int m_iPolicy; __fastcall TPolicySaveForm(TComponent* Owner, int type, String name); }; //--------------------------------------------------------------------------- extern PACKAGE TPolicySaveForm *PolicySaveForm; //--------------------------------------------------------------------------- #endif