home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / TERMMOD.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-05  |  1.0 KB  |  32 lines

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