home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / Chip_1999-03_cd.bin / zkuste / delphi / D / MATEM.ARJ / RCHART.ZIP / exmpl-2 / cpp1 / logwarn.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-22  |  868 b   |  26 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef logwarnH
  3. #define logwarnH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TLogWarnForm : public TForm
  11. {
  12. __published:    // IDE-managed Components
  13.     TLabel *Label2;
  14.     TLabel *Label1;
  15.     TLabel *Label3;
  16.     TLabel *Label4;
  17.     TButton *Button1;
  18. private:    // User declarations
  19. public:        // User declarations
  20.     __fastcall TLogWarnForm(TComponent* Owner);
  21. };
  22. //---------------------------------------------------------------------------
  23. extern TLogWarnForm *LogWarnForm;
  24. //---------------------------------------------------------------------------
  25. #endif
  26.