License.h 693 B

1234567891011121314151617181920212223
  1. //---------------------------------------------------------------------------
  2. #ifndef LicenseH
  3. #define LicenseH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <Mask.hpp>
  10. #include "WinInterface.h"
  11. //---------------------------------------------------------------------------
  12. class TLicenseDialog : public TForm
  13. {
  14. __published:
  15. TButton * CloseButton;
  16. TMemo * LicenseMemo;
  17. public:
  18. __fastcall TLicenseDialog(TComponent * Owner, TLicense License);
  19. };
  20. //---------------------------------------------------------------------------
  21. #endif