home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / NOTIFY.H < prev    next >
C/C++ Source or Header  |  1997-02-28  |  1KB  |  28 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef NOTIFYH
  7. #define NOTIFYH
  8. //---------------------------------------------------------------------------
  9. #include <vcl\Classes.hpp>
  10. #include <vcl\Controls.hpp>
  11. #include <vcl\StdCtrls.hpp>
  12. #include <vcl\Forms.hpp>
  13. //---------------------------------------------------------------------------
  14. class TNotifyForm : public TForm
  15. {
  16. __published:    // IDE-managed Components 
  17.     TLabel *Label1;
  18.     TLabel *Label2;
  19.     TLabel *Label3;
  20. private:    // User declarations
  21. public:        // User declarations
  22.     virtual __fastcall TNotifyForm(TComponent* Owner);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern TNotifyForm *NotifyForm;
  26. //---------------------------------------------------------------------------
  27. #endif
  28.