home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / TERMMOD.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  1KB  |  36 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef TermModH
  7. #define TermModH
  8. //---------------------------------------------------------------------------
  9. #include <windows.hpp>
  10. #include <messages.hpp>
  11. #include <sysutils.hpp>
  12. #include <classes.hpp>
  13. #include <graphics.hpp>
  14. #include <controls.hpp>
  15. #include <forms.hpp>
  16. #include <dialogs.hpp>
  17. #include <extctrls.hpp>
  18. #include <stdctrls.hpp>
  19. #include <dbgrids.hpp>
  20. #include <grids.hpp>
  21. #include <custmod.h>
  22. //---------------------------------------------------------------------------
  23. class TTerm : public TCust
  24. {
  25. __published:
  26.     void __fastcall FilterToggleClick(TObject *Sender);
  27.     void __fastcall FilterTextChange(TObject *Sender);
  28. private:        // private user declarations
  29. public:         // public user declarations
  30.     virtual __fastcall TTerm(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern TTerm *Term;
  34. //---------------------------------------------------------------------------
  35. #endif
  36.